198bf0edea60eaaa844e756e401fe7e3fc42751d
[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 package org.onap.clamp.clds.sdc.controller.installer;
25
26 import java.util.Objects;
27
28 public class MicroService {
29     private final String name;
30     private final String inputFrom;
31     private String mappedNameJpa;
32
33     public MicroService(String name, String inputFrom, String mappedNameJpa) {
34         this.name = name;
35         this.inputFrom = inputFrom;
36         this.mappedNameJpa = mappedNameJpa;
37     }
38
39     public String getName() {
40         return name;
41     }
42
43     public String getInputFrom() {
44         return inputFrom;
45     }
46
47     @Override
48     public String toString() {
49         return "MicroService{" + "name='" + name + '\'' + ", inputFrom='" + inputFrom + '\'' + ", mappedNameJpa='"
50             + mappedNameJpa + '\'' + '}';
51     }
52
53     public String getMappedNameJpa() {
54         return mappedNameJpa;
55     }
56
57     public void setMappedNameJpa(String mappedNameJpa) {
58         this.mappedNameJpa = mappedNameJpa;
59     }
60
61     @Override
62     public boolean equals(Object o) {
63         if (this == o) {
64             return true;
65         }
66         if (o == null || getClass() != o.getClass()) {
67             return false;
68         }
69         MicroService that = (MicroService) o;
70         return name.equals(that.name) && inputFrom.equals(that.inputFrom) && mappedNameJpa.equals(that.mappedNameJpa);
71     }
72
73     @Override
74     public int hashCode() {
75         return Objects.hash(name, inputFrom, mappedNameJpa);
76     }
77 }