optionally disable client auth in gizmo
[aai/gizmo.git] / src / main / java / org / onap / crud / parser / EdgePayload.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 javax.ws.rs.core.Response.Status;
24 import org.onap.crud.exception.CrudException;
25 import com.google.gson.Gson;
26 import com.google.gson.GsonBuilder;
27 import com.google.gson.JsonElement;
28
29 public class EdgePayload {
30
31   private String id;
32   private String type;
33   private String url;
34   private String source;
35   private String target;
36   private JsonElement properties;
37
38   private static final Gson gson = new GsonBuilder().disableHtmlEscaping().create();
39
40
41   @Override
42   public String toString() {
43     return "EdgePayload [id=" + id + ", type=" + type + ", url=" + url + ", source="
44         + source + ", target=" + target + ", properties=" + properties + "]";
45   }
46
47   public String toJson() {
48     return gson.toJson(this);
49   }
50
51   public static EdgePayload fromJson(String payload) throws CrudException {
52     try {
53       if (payload == null || payload.isEmpty()) {
54         throw new CrudException("Invalid Json Payload", Status.BAD_REQUEST);
55       }
56       return gson.fromJson(payload, EdgePayload.class);
57     } catch (Exception ex) {
58       throw new CrudException("Invalid Json Payload", Status.BAD_REQUEST);
59     }
60   }
61
62   public String getId() {
63     return id;
64   }
65
66   public void setId(String id) {
67     this.id = id;
68   }
69
70   public String getType() {
71     return type;
72   }
73
74   public void setType(String type) {
75     this.type = type;
76   }
77
78   public String getUrl() {
79     return url;
80   }
81
82   public void setUrl(String url) {
83     this.url = url;
84   }
85
86   public String getSource() {
87     return source;
88   }
89
90   public void setSource(String source) {
91     this.source = source;
92   }
93
94   public String getTarget() {
95     return target;
96   }
97
98   public void setTarget(String target) {
99     this.target = target;
100   }
101
102   public JsonElement getProperties() {
103     return properties;
104   }
105
106   public void setProperties(JsonElement properties) {
107     this.properties = properties;
108   }
109
110 }