Update license date and text
[aai/gizmo.git] / src / main / java / org / onap / crud / service / VertexPayload.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.service;
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 import javax.ws.rs.core.Response.Status;
32
33 public class VertexPayload {
34
35   private String id;
36   private String type;
37   private String url;
38   private JsonElement properties;
39   private List<EdgePayload> in = new ArrayList<EdgePayload>();
40   private List<EdgePayload> out = new ArrayList<EdgePayload>();
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 VertexPayload 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, VertexPayload.class);
54     } catch (Exception ex) {
55       throw new CrudException("Invalid Json Payload", Status.BAD_REQUEST);
56     }
57   }
58
59   public String getId() {
60     return id;
61   }
62
63   public void setId(String id) {
64     this.id = id;
65   }
66
67   public String getType() {
68     return type;
69   }
70
71   public void setType(String type) {
72     this.type = type;
73   }
74
75   public String getUrl() {
76     return url;
77   }
78
79   public void setUrl(String url) {
80     this.url = url;
81   }
82
83   public JsonElement getProperties() {
84     return properties;
85   }
86
87   public void setProperties(JsonElement properties) {
88     this.properties = properties;
89   }
90
91   public List<EdgePayload> getIn() {
92     return in;
93   }
94
95   public void setIn(List<EdgePayload> in) {
96     this.in = in;
97   }
98
99   public List<EdgePayload> getOut() {
100     return out;
101   }
102
103   public void setOut(List<EdgePayload> out) {
104     this.out = out;
105   }
106
107
108   @Override
109   public String toString() {
110     return "VertexPayload [id=" + id + ", type=" + type + ", url=" + url + ", properties="
111         + properties + ", in=" + in + ", out=" + out + "]";
112   }
113
114 }