Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / bpmn / servicedecomposition / modelinfo / ModelInfoInstanceGroup.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.bpmn.servicedecomposition.modelinfo;
22
23 import java.io.Serializable;
24 import com.fasterxml.jackson.annotation.JsonProperty;
25
26 public class ModelInfoInstanceGroup implements Serializable {
27
28     private static final long serialVersionUID = -8279040393230356226L;
29
30     public static final String TYPE_L3_NETWORK = "L3-NETWORK";
31     public static final String TYPE_VNFC = "VNFC";
32
33     @JsonProperty("model-uuid")
34     private String ModelUUID;
35     @JsonProperty("model-invariant-uuid")
36     private String ModelInvariantUUID;
37     @JsonProperty("type")
38     private String type;
39     @JsonProperty("instance-group-role")
40     private String instanceGroupRole;
41     @JsonProperty("function")
42     private String function;
43     @JsonProperty("description")
44     private String description;
45
46     public String getModelUUID() {
47         return ModelUUID;
48     }
49
50     public void setModelUUID(String modelUUID) {
51         ModelUUID = modelUUID;
52     }
53
54     public String getModelInvariantUUID() {
55         return ModelInvariantUUID;
56     }
57
58     public void setModelInvariantUUID(String modelInvariantUUID) {
59         ModelInvariantUUID = modelInvariantUUID;
60     }
61
62     public String getType() {
63         return type;
64     }
65
66     public void setType(String type) {
67         this.type = type;
68     }
69
70     public String getInstanceGroupRole() {
71         return instanceGroupRole;
72     }
73
74     public void setInstanceGroupRole(String instanceGroupRole) {
75         this.instanceGroupRole = instanceGroupRole;
76     }
77
78     public String getFunction() {
79         return function;
80     }
81
82     public void setFunction(String function) {
83         this.function = function;
84     }
85
86     public String getDescription() {
87         return description;
88     }
89
90     public void setDescription(String description) {
91         this.description = description;
92     }
93 }