Fix Checkstyle issues
[clamp.git] / src / main / java / org / onap / clamp / clds / sdc / controller / installer / MicroService.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2019 Nokia 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  * Modifications copyright (c) 2019 AT&T
21  * ===================================================================
22  *
23  */
24
25 package org.onap.clamp.clds.sdc.controller.installer;
26
27 import java.util.Objects;
28
29 public class MicroService {
30     private final String name;
31     private final String modelType;
32     private final String blueprintName;
33     private final String inputFrom;
34     private String mappedNameJpa;
35
36     public MicroService(String name, String modelType, String inputFrom, String mappedNameJpa, String blueprintName) {
37         this.name = name;
38         this.inputFrom = inputFrom;
39         this.mappedNameJpa = mappedNameJpa;
40         this.modelType =  modelType;
41         this.blueprintName = blueprintName;
42     }
43
44     public String getName() {
45         return name;
46     }
47
48     public String getModelType() {
49         return modelType;
50     }
51
52     public String getInputFrom() {
53         return inputFrom;
54     }
55
56     public String getBlueprintName() {
57         return blueprintName;
58     }
59
60     @Override
61     public String toString() {
62         return "MicroService{" + "name='" + name + '\'' + ", modelType='" + modelType + '\'' + ", inputFrom='"
63                 + inputFrom + '\'' + ", mappedNameJpa='" + mappedNameJpa + '\'' + ", blueprintName='"
64                 + blueprintName + '\'' + '}';
65     }
66
67     public String getMappedNameJpa() {
68         return mappedNameJpa;
69     }
70
71     public void setMappedNameJpa(String mappedNameJpa) {
72         this.mappedNameJpa = mappedNameJpa;
73     }
74
75     @Override
76     public boolean equals(Object o) {
77         if (this == o) {
78             return true;
79         }
80         if (o == null || getClass() != o.getClass()) {
81             return false;
82         }
83         MicroService that = (MicroService) o;
84         return name.equals(that.name) && modelType.equals(that.modelType) && inputFrom.equals(that.inputFrom) && mappedNameJpa.equals(that.mappedNameJpa) && blueprintName.equals(that.blueprintName);
85     }
86
87     @Override
88     public int hashCode() {
89         return Objects.hash(name, modelType, inputFrom, mappedNameJpa, blueprintName);
90     }
91 }