Merge "Create Service object"
[clamp.git] / src / main / java / org / onap / clamp / loop / service / Service.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights
6  *                             reserved.
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  *
22  */
23
24 package org.onap.clamp.loop.service;
25
26 import com.att.eelf.configuration.EELFLogger;
27 import com.att.eelf.configuration.EELFManager;
28 import com.google.gson.JsonObject;
29 import com.google.gson.annotations.Expose;
30
31 import java.io.Serializable;
32
33 import javax.persistence.Column;
34 import javax.persistence.Entity;
35 import javax.persistence.Id;
36 import javax.persistence.Table;
37 import javax.persistence.Transient;
38
39 import org.hibernate.annotations.Type;
40 import org.hibernate.annotations.TypeDef;
41 import org.hibernate.annotations.TypeDefs;
42 import org.onap.clamp.dao.model.jsontype.StringJsonUserType;
43
44
45 @Entity
46 @Table(name = "services")
47 @TypeDefs({ @TypeDef(name = "json", typeClass = StringJsonUserType.class) })
48 public class Service implements Serializable {
49
50     /**
51      * The serial version id.
52      */
53     private static final long serialVersionUID = 1331119060272760758L;
54
55     @Transient
56     private static final EELFLogger logger = EELFManager.getInstance().getLogger(Service.class);
57
58     @Id
59     @Column(name = "service_uuid", unique = true)
60     private String serviceUuid;
61
62     @Column(nullable = false, name = "name")
63     private String name;
64
65     @Expose
66     @Type(type = "json")
67     @Column(columnDefinition = "json", name = "service_details")
68     private JsonObject serviceDetails;
69
70     @Expose
71     @Type(type = "json")
72     @Column(columnDefinition = "json", name = "resource_details")
73     private JsonObject resourceDetails;
74
75     /**
76      * Public constructor.
77      */
78     public Service() {
79     }
80
81     /**
82      * Constructor.
83      */
84     public Service(JsonObject serviceDetails, JsonObject resourceDetails) {
85         this.name = serviceDetails.get("name").getAsString();
86         this.serviceUuid = serviceDetails.get("UUID").getAsString();
87         this.serviceDetails = serviceDetails;
88         this.resourceDetails = resourceDetails;
89     }
90
91     public String getServiceUuid() {
92         return serviceUuid;
93     }
94
95     public JsonObject getServiceDetails() {
96         return serviceDetails;
97     }
98
99     public JsonObject getResourceDetails() {
100         return resourceDetails;
101     }
102
103     public JsonObject getResourceByType(String type) {
104         return (JsonObject) resourceDetails.get(type);
105     }
106
107     @Override
108     public int hashCode() {
109         final int prime = 31;
110         int result = 1;
111         result = prime * result + ((serviceUuid == null) ? 0 : serviceUuid.hashCode());
112         return result;
113     }
114
115     @Override
116     public boolean equals(Object obj) {
117         if (this == obj) {
118             return true;
119         }
120         if (obj == null) {
121             return false;
122         }
123         if (getClass() != obj.getClass()) {
124             return false;
125         }
126         Service other = (Service) obj;
127         if (serviceUuid == null) {
128             if (other.serviceUuid != null) {
129                 return false;
130             }
131         } else if (!serviceUuid.equals(other.serviceUuid)) {
132             return false;
133         }
134         return true;
135     }
136
137 }