Checkstyle fixes
[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 inputFrom;
33     private String mappedNameJpa;
34
35     /**
36      * The Micro service constructor.
37      * 
38      * @param name          The name in String
39      * @param modelType     The model type
40      * @param inputFrom     Comes from (single chained)
41      * @param mappedNameJpa Name in database
42      */
43     public MicroService(String name, String modelType, String inputFrom, String mappedNameJpa) {
44         this.name = name;
45         this.inputFrom = inputFrom;
46         this.mappedNameJpa = mappedNameJpa;
47         this.modelType = modelType;
48     }
49
50     public String getName() {
51         return name;
52     }
53
54     public String getModelType() {
55         return modelType;
56     }
57
58     public String getInputFrom() {
59         return inputFrom;
60     }
61
62     @Override
63     public String toString() {
64         return "MicroService{" + "name='" + name + '\'' + ", modelType='" + modelType + '\'' + ", inputFrom='"
65                 + inputFrom + '\'' + ", mappedNameJpa='" + mappedNameJpa + '\'' + '}';
66     }
67
68     public String getMappedNameJpa() {
69         return mappedNameJpa;
70     }
71
72     public void setMappedNameJpa(String mappedNameJpa) {
73         this.mappedNameJpa = mappedNameJpa;
74     }
75
76     @Override
77     public boolean equals(Object obj) {
78         if (this == obj) {
79             return true;
80         }
81         if (obj == null || getClass() != obj.getClass()) {
82             return false;
83         }
84         MicroService that = (MicroService) obj;
85         return name.equals(that.name) && modelType.equals(that.modelType) && inputFrom.equals(that.inputFrom)
86                 && mappedNameJpa.equals(that.mappedNameJpa);
87     }
88
89     @Override
90     public int hashCode() {
91         return Objects.hash(name, modelType, inputFrom, mappedNameJpa);
92     }
93 }