optionally disable client auth in gizmo
[aai/gizmo.git] / src / main / java / org / onap / crud / parser / BulkPayload.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.crud.parser;
22
23 import com.google.gson.Gson;
24 import com.google.gson.GsonBuilder;
25 import com.google.gson.JsonElement;
26
27 import org.onap.crud.exception.CrudException;
28
29 import java.util.ArrayList;
30 import java.util.List;
31
32 import javax.ws.rs.core.Response.Status;
33
34 public class BulkPayload {
35   public enum OperationType {
36     CREATE, UPDATE, DELETE
37   }
38
39   private List<JsonElement> objects = new ArrayList<JsonElement>();
40   private List<JsonElement> relationships = new ArrayList<JsonElement>();
41
42   private static final Gson gson = new GsonBuilder().disableHtmlEscaping().create();
43
44   public String toJson() {
45     return gson.toJson(this);
46   }
47
48   public static BulkPayload fromJson(String payload) throws CrudException {
49     try {
50       if (payload == null || payload.isEmpty()) {
51         throw new CrudException("Invalid Json Payload", Status.BAD_REQUEST);
52       }
53       return gson.fromJson(payload, BulkPayload.class);
54     } catch (Exception ex) {
55       throw new CrudException("Invalid Json Payload", Status.BAD_REQUEST);
56     }
57   }
58
59   public List<JsonElement> getObjects() {
60     return objects;
61   }
62
63   public void setObjects(List<JsonElement> objects) {
64     this.objects = objects;
65   }
66
67   public List<JsonElement> getRelationships() {
68     return relationships;
69   }
70
71   public void setRelationships(List<JsonElement> relationships) {
72     this.relationships = relationships;
73   }
74
75   @Override
76   public String toString() {
77     return "BulkPayload [objects=" + objects + ", relationships=" + relationships + "]";
78   }
79
80 }