9bc7a022a6cccca1f19f8cf4d67acbbb36f62053
[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     public MicroService(String name, String modelType, String inputFrom, String mappedNameJpa) {
36         this.name = name;
37         this.inputFrom = inputFrom;
38         this.mappedNameJpa = mappedNameJpa;
39         this.modelType = modelType;
40     }
41
42     public String getName() {
43         return name;
44     }
45
46     public String getModelType() {
47         return modelType;
48     }
49
50     public String getInputFrom() {
51         return inputFrom;
52     }
53
54     @Override
55     public String toString() {
56         return "MicroService{" + "name='" + name + '\'' + ", modelType='" + modelType + '\'' + ", inputFrom='"
57             + inputFrom + '\'' + ", mappedNameJpa='" + mappedNameJpa + '\'' + '}';
58     }
59
60     public String getMappedNameJpa() {
61         return mappedNameJpa;
62     }
63
64     public void setMappedNameJpa(String mappedNameJpa) {
65         this.mappedNameJpa = mappedNameJpa;
66     }
67
68     @Override
69     public boolean equals(Object o) {
70         if (this == o) {
71             return true;
72         }
73         if (o == null || getClass() != o.getClass()) {
74             return false;
75         }
76         MicroService that = (MicroService) o;
77         return name.equals(that.name) && modelType.equals(that.modelType) && inputFrom.equals(that.inputFrom)
78             && mappedNameJpa.equals(that.mappedNameJpa);
79     }
80
81     @Override
82     public int hashCode() {
83         return Objects.hash(name, modelType, inputFrom, mappedNameJpa);
84     }
85 }