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