cb6fabde30ccf4da3e48e0bb4556b5979f8d674e
[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
25 import com.fasterxml.jackson.annotation.JsonProperty;
26
27 public class ModelInfoCollection  implements Serializable {
28
29         private static final long serialVersionUID = 8380534468706675508L;
30
31         @JsonProperty("model-customization-uuid")
32         private String modelCustomizationUUID;
33         @JsonProperty("model-version-id")
34         private String modelVersionId;
35         @JsonProperty("model-invariant-uuid")
36         private String modelInvariantUUID;
37         @JsonProperty("collection-function")
38         private String collectionFunction;
39         @JsonProperty("collection-role")
40         private String collectionRole;
41         @JsonProperty("collection-type")
42         private String collectionType;
43         @JsonProperty("description")
44         private String description;
45         @JsonProperty("quantity")
46         private Integer quantity;
47         
48         public String getModelCustomizationUUID() {
49                 return modelCustomizationUUID;
50         }
51         public void setModelCustomizationUUID(String modelCustomizationUUID) {
52                 this.modelCustomizationUUID = modelCustomizationUUID;
53         }
54         public String getModelVersionId() {
55                 return modelVersionId;
56         }
57         public void setModelVersionId(String modelVersionId) {
58                 this.modelVersionId = modelVersionId;
59         }
60         public String getModelInvariantUUID() {
61                 return this.modelInvariantUUID;
62         }
63         public void setModelInvariantUUID(String modelInvariantUUID) {
64                 this.modelInvariantUUID = modelInvariantUUID;
65         }
66         public String getCollectionFunction() {
67                 return collectionFunction;
68         }
69         public void setCollectionFunction(String collectionFunction) {
70                 this.collectionFunction = collectionFunction;
71         }
72         public String getCollectionRole() {
73                 return collectionRole;
74         }
75         public void setCollectionRole(String collectionRole) {
76                 this.collectionRole = collectionRole;
77         }
78         public String getCollectionType() {
79                 return collectionType;
80         }
81         public void setCollectionType(String collectionType) {
82                 this.collectionType = collectionType;
83         }
84         public String getDescription() {
85                 return description;
86         }
87         public void setDescription(String description) {
88                 this.description = description;
89         }
90         public Integer getQuantity() {
91                 return quantity;
92         }
93         public void setQuantity(Integer quantity) {
94                 this.quantity = quantity;
95         }
96         
97         
98         
99 }