Clean up minor checkstyle/sonar issues
[policy/models.git] / models-interactions / model-impl / sdc / src / main / java / org / onap / policy / sdc / Service.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * sdc
4  * ================================================================================
5  * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019-2020 Nordix Foundation.
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 package org.onap.policy.sdc;
23
24 import com.google.gson.annotations.SerializedName;
25
26 import java.io.Serializable;
27 import java.util.UUID;
28
29 import lombok.Data;
30
31 @Data
32 public class Service implements Serializable {
33
34     private static final long serialVersionUID = -1249276698549996806L;
35
36     @SerializedName("serviceUuid")
37     private UUID serviceUuid;
38
39     @SerializedName("serviceInvariantUuid")
40     private UUID serviceInvariantUuid;
41
42     private String serviceName;
43     private String serviceVersion;
44
45     public Service() {
46         // Empty Constructor
47     }
48
49     public Service(UUID uuid) {
50         this.serviceUuid = uuid;
51     }
52
53     public Service(String name) {
54         this.serviceName = name;
55     }
56
57     /**
58      * Constructor.
59      *
60      * @param uuid service id
61      * @param invariantUuid service invariant id
62      * @param name name
63      * @param version version
64      */
65     public Service(UUID uuid, UUID invariantUuid, String name, String version) {
66         this.serviceUuid = uuid;
67         this.serviceInvariantUuid = invariantUuid;
68         this.serviceName = name;
69         this.serviceVersion = version;
70     }
71
72     /**
73      * Constructor.
74      *
75      * @param service copy object
76      */
77     public Service(Service service) {
78         this.serviceUuid = service.serviceUuid;
79         this.serviceInvariantUuid = service.serviceInvariantUuid;
80         this.serviceName = service.serviceName;
81         this.serviceVersion = service.serviceVersion;
82     }
83 }