Fixing the formatting
[aai/gizmo.git] / src / main / java / org / onap / crud / entity / Vertex.java
1 /**
2  * ============LICENSE_START=======================================================
3  * Gizmo
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property.
6  * Copyright © 2017 Amdocs
7  * All rights reserved.
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *    http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  *
22  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
23  */
24 package org.onap.crud.entity;
25
26 import net.dongliu.gson.GsonJava8TypeAdapterFactory;
27
28 import com.google.gson.Gson;
29 import com.google.gson.GsonBuilder;
30 import com.google.gson.annotations.SerializedName;
31
32 import java.util.HashMap;
33 import java.util.Map;
34 import java.util.Optional;
35
36 public class Vertex {
37   private static final Gson gson = new GsonBuilder().registerTypeAdapterFactory(new GsonJava8TypeAdapterFactory())
38       .create();
39
40   @SerializedName(value = "id", alternate = { "key" })
41   private final Optional<String> id;
42
43   private final String type;
44   private final Map<String, Object> properties;
45
46   private Vertex(Builder builder) {
47     this.id = builder.id;
48     this.type = builder.type;
49     this.properties = builder.properties;
50   }
51
52   public static class Builder {
53     private Optional<String> id = Optional.empty();
54     private final String type;
55     private final Map<String, Object> properties = new HashMap<String, Object>();
56
57     public Builder(String type) {
58       if (type == null) {
59         throw new IllegalArgumentException("Type cannot be null");
60       }
61       this.type = type;
62     }
63
64     public Builder id(String id) {
65       if (id == null) {
66         throw new IllegalArgumentException("id cannot be null");
67       }
68
69       this.id = Optional.of(id);
70       return this;
71     }
72
73     public Builder property(String key, Object value) {
74       if (key == null || value == null) {
75         throw new IllegalArgumentException("Property key/value cannot be null");
76       }
77       properties.put(key, value);
78       return this;
79     }
80
81     public Vertex build() {
82       return new Vertex(this);
83     }
84   }
85
86   public String toJson() {
87     return gson.toJson(this);
88   }
89
90   public String toJson(Gson customGson) {
91     return customGson.toJson(this);
92   }
93
94   public static Vertex fromJson(String jsonString) {
95     return gson.fromJson(jsonString, Vertex.class);
96   }
97
98   @Override
99   public String toString() {
100     return "Vertex [id=" + id + ", type=" + type + ", properties=" + properties + "]";
101   }
102
103   public Optional<String> getId() {
104     return id;
105   }
106
107   public String getType() {
108     return type;
109   }
110
111   public Map<String, Object> getProperties() {
112     return properties;
113   }
114
115 }