Merge "Update get Dcae Status flow"
[clamp.git] / src / main / java / org / onap / clamp / clds / sdc / controller / installer / BlueprintMicroService.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-2020 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 BlueprintMicroService {
30     private final String name;
31     private final String modelType;
32     private final String inputFrom;
33     private final String modelVersion;
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      */
42     public BlueprintMicroService(String name, String modelType, String inputFrom, String modelVersion) {
43         this.name = name;
44         this.inputFrom = inputFrom;
45         this.modelType = modelType;
46         this.modelVersion = modelVersion;
47     }
48
49     public String getName() {
50         return name;
51     }
52
53     public String getModelType() {
54         return modelType;
55     }
56
57     public String getInputFrom() {
58         return inputFrom;
59     }
60
61     /**
62      * modelVerrsion getter.
63      * 
64      * @return the modelVersion
65      */
66     public String getModelVersion() {
67         return modelVersion;
68     }
69
70     @Override
71     public String toString() {
72         return "MicroService {" + "name='" + name + '\'' + ", modelType='" + modelType + '\'' + ", inputFrom='"
73                 + inputFrom + '\'' + ", modelVersion='" + modelVersion + '\'' + '}';
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         BlueprintMicroService that = (BlueprintMicroService) obj;
85         return name.equals(that.name) && modelType.equals(that.modelType) && inputFrom.equals(that.inputFrom)
86                 && modelVersion.equals(that.modelVersion);
87     }
88
89     @Override
90     public int hashCode() {
91         return Objects.hash(name, modelType, inputFrom, modelVersion);
92     }
93 }