Update 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     @Column(name = "version")
66     private String version;
67
68     @Expose
69     @Type(type = "json")
70     @Column(columnDefinition = "json", name = "service_details")
71     private JsonObject serviceDetails;
72
73     @Expose
74     @Type(type = "json")
75     @Column(columnDefinition = "json", name = "resource_details")
76     private JsonObject resourceDetails;
77
78     /**
79      * Public constructor.
80      */
81     public Service() {
82     }
83
84     /**
85      * Constructor.
86      */
87     public Service(JsonObject serviceDetails, JsonObject resourceDetails, String version) {
88         this.name = serviceDetails.get("name").getAsString();
89         this.serviceUuid = serviceDetails.get("UUID").getAsString();
90         this.serviceDetails = serviceDetails;
91         this.resourceDetails = resourceDetails;
92         this.version = version;
93     }
94
95     public String getServiceUuid() {
96         return serviceUuid;
97     }
98
99     public JsonObject getServiceDetails() {
100         return serviceDetails;
101     }
102
103     public JsonObject getResourceDetails() {
104         return resourceDetails;
105     }
106
107     public JsonObject getResourceByType(String type) {
108         return (JsonObject) resourceDetails.get(type);
109     }
110
111     @Override
112     public int hashCode() {
113         final int prime = 31;
114         int result = 1;
115         result = prime * result + ((serviceUuid == null) ? 0 : serviceUuid.hashCode());
116         return result;
117     }
118
119     @Override
120     public boolean equals(Object obj) {
121         if (this == obj) {
122             return true;
123         }
124         if (obj == null) {
125             return false;
126         }
127         if (getClass() != obj.getClass()) {
128             return false;
129         }
130         Service other = (Service) obj;
131         if (serviceUuid == null) {
132             if (other.serviceUuid != null) {
133                 return false;
134             }
135         } else if (!serviceUuid.equals(other.serviceUuid)) {
136             return false;
137         }
138         return true;
139     }
140
141 }