c873912922308e6d0b86ef9614cd4ac2b5f6b604
[so.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2018 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 ModelInfoMetadata implements Serializable{
28
29         private static final long serialVersionUID = -2182850364281359289L;
30
31         @JsonProperty("model-customization-uuid")
32         private String modelCustomizationUuid;
33         @JsonProperty("model-invariant-uuid")
34         private String modelInvariantUuid;
35         @JsonProperty("model-uuid")
36         private String modelUuid;
37         @JsonProperty("model-version")
38         private String modelVersion;
39         @JsonProperty("model-instance-name")
40         private String modelInstanceName;
41         @JsonProperty("model-name")
42         private String modelName;
43
44
45         public String getModelCustomizationUuid() {
46                 return modelCustomizationUuid;
47         }
48         public void setModelCustomizationUuid(String modelCustomizationUuid) {
49                 this.modelCustomizationUuid = modelCustomizationUuid;
50         }
51         public String getModelInvariantUuid() {
52                 return modelInvariantUuid;
53         }
54         public void setModelInvariantUuid(String modelInvariantUuid) {
55                 this.modelInvariantUuid = modelInvariantUuid;
56         }
57         public String getModelUuid() {
58                 return modelUuid;
59         }
60         public void setModelUuid(String modelUuid) {
61                 this.modelUuid = modelUuid;
62         }
63         public String getModelVersion() {
64                 return modelVersion;
65         }
66         public void setModelVersion(String modelVersion) {
67                 this.modelVersion = modelVersion;
68         }
69         public String getModelInstanceName() {
70                 return modelInstanceName;
71         }
72         public void setModelInstanceName(String modelInstanceName) {
73                 this.modelInstanceName = modelInstanceName;
74         }
75         public String getModelName() {
76                 return modelName;
77         }
78         public void setModelName(String modelName) {
79                 this.modelName = modelName;
80         }
81
82
83 }