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