2  * ============LICENSE_START=======================================================
 
   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
 
  11  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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=========================================================
 
  21 package org.onap.so.bpmn.servicedecomposition.modelinfo;
 
  23 import java.io.Serializable;
 
  25 import com.fasterxml.jackson.annotation.JsonProperty;
 
  27 public class ModelInfoCollection  implements Serializable {
 
  29         private static final long serialVersionUID = 8380534468706675508L;
 
  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")
 
  48         public String getModelCustomizationUUID() {
 
  49                 return modelCustomizationUUID;
 
  51         public void setModelCustomizationUUID(String modelCustomizationUUID) {
 
  52                 this.modelCustomizationUUID = modelCustomizationUUID;
 
  54         public String getModelVersionId() {
 
  55                 return modelVersionId;
 
  57         public void setModelVersionId(String modelVersionId) {
 
  58                 this.modelVersionId = modelVersionId;
 
  60         public String getModelInvariantUUID() {
 
  61                 return this.modelInvariantUUID;
 
  63         public void setModelInvariantUUID(String modelInvariantUUID) {
 
  64                 this.modelInvariantUUID = modelInvariantUUID;
 
  66         public String getCollectionFunction() {
 
  67                 return collectionFunction;
 
  69         public void setCollectionFunction(String collectionFunction) {
 
  70                 this.collectionFunction = collectionFunction;
 
  72         public String getCollectionRole() {
 
  73                 return collectionRole;
 
  75         public void setCollectionRole(String collectionRole) {
 
  76                 this.collectionRole = collectionRole;
 
  78         public String getCollectionType() {
 
  79                 return collectionType;
 
  81         public void setCollectionType(String collectionType) {
 
  82                 this.collectionType = collectionType;
 
  84         public String getDescription() {
 
  87         public void setDescription(String description) {
 
  88                 this.description = description;
 
  90         public int getQuantity() {
 
  93         public void setQuantity(int quantity) {
 
  94                 this.quantity = quantity;