Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / bpmn / servicedecomposition / modelinfo / ModelInfoCollection.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 ModelInfoCollection implements Serializable {
27
28     private static final long serialVersionUID = 8380534468706675508L;
29
30     @JsonProperty("model-customization-uuid")
31     private String modelCustomizationUUID;
32     @JsonProperty("model-version-id")
33     private String modelVersionId;
34     @JsonProperty("model-invariant-uuid")
35     private String modelInvariantUUID;
36     @JsonProperty("collection-function")
37     private String collectionFunction;
38     @JsonProperty("collection-role")
39     private String collectionRole;
40     @JsonProperty("collection-type")
41     private String collectionType;
42     @JsonProperty("description")
43     private String description;
44     @JsonProperty("quantity")
45     private Integer quantity;
46
47     public String getModelCustomizationUUID() {
48         return modelCustomizationUUID;
49     }
50
51     public void setModelCustomizationUUID(String modelCustomizationUUID) {
52         this.modelCustomizationUUID = modelCustomizationUUID;
53     }
54
55     public String getModelVersionId() {
56         return modelVersionId;
57     }
58
59     public void setModelVersionId(String modelVersionId) {
60         this.modelVersionId = modelVersionId;
61     }
62
63     public String getModelInvariantUUID() {
64         return this.modelInvariantUUID;
65     }
66
67     public void setModelInvariantUUID(String modelInvariantUUID) {
68         this.modelInvariantUUID = modelInvariantUUID;
69     }
70
71     public String getCollectionFunction() {
72         return collectionFunction;
73     }
74
75     public void setCollectionFunction(String collectionFunction) {
76         this.collectionFunction = collectionFunction;
77     }
78
79     public String getCollectionRole() {
80         return collectionRole;
81     }
82
83     public void setCollectionRole(String collectionRole) {
84         this.collectionRole = collectionRole;
85     }
86
87     public String getCollectionType() {
88         return collectionType;
89     }
90
91     public void setCollectionType(String collectionType) {
92         this.collectionType = collectionType;
93     }
94
95     public String getDescription() {
96         return description;
97     }
98
99     public void setDescription(String description) {
100         this.description = description;
101     }
102
103     public Integer getQuantity() {
104         return quantity;
105     }
106
107     public void setQuantity(Integer quantity) {
108         this.quantity = quantity;
109     }
110
111
112
113 }