Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCoreBPMN / src / main / java / org / onap / so / bpmn / core / domain / ModelInfo.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.core.domain;
22
23 import java.io.Serializable;
24 import com.fasterxml.jackson.annotation.JsonRootName;
25
26 @JsonRootName("modelInfo")
27 public class ModelInfo extends JsonWrapper implements Serializable {
28
29     /**
30      * This is domain object defining structure for MODEL INFO It will be valid for each Resource type object
31      */
32     private static final long serialVersionUID = 1L;
33
34     private String modelName = "";
35     private String modelUuid = "";
36     private String modelInvariantUuid = "";
37     private String modelVersion = "";
38     // additionally on resource level
39     private String modelCustomizationUuid = "";
40     private String modelCustomizationName = "";
41     private String modelInstanceName = "";
42     private String modelType = "";
43
44     // GET and SET methods
45
46     public String getModelName() {
47         return modelName;
48     }
49
50     public void setModelName(String modelName) {
51         this.modelName = modelName;
52     }
53
54     public String getModelUuid() {
55         return modelUuid;
56     }
57
58     public void setModelUuid(String modelUuid) {
59         this.modelUuid = modelUuid;
60     }
61
62     public String getModelInvariantUuid() {
63         return modelInvariantUuid;
64     }
65
66     public void setModelInvariantUuid(String modelInvariantUuid) {
67         this.modelInvariantUuid = modelInvariantUuid;
68     }
69
70     public String getModelVersion() {
71         return modelVersion;
72     }
73
74     public void setModelVersion(String modelVersion) {
75         this.modelVersion = modelVersion;
76     }
77
78     public String getModelCustomizationUuid() {
79         return modelCustomizationUuid;
80     }
81
82     public void setModelCustomizationUuid(String modelCustomizationUuid) {
83         this.modelCustomizationUuid = modelCustomizationUuid;
84     }
85
86     public String getModelCustomizationName() {
87         return modelCustomizationName;
88     }
89
90     public void setModelCustomizationName(String modelCustomizationName) {
91         this.modelCustomizationName = modelCustomizationName;
92     }
93
94     public String getModelInstanceName() {
95         return modelInstanceName;
96     }
97
98     public void setModelInstanceName(String modelInstanceName) {
99         this.modelInstanceName = modelInstanceName;
100     }
101
102     public String getModelType() {
103         return modelType;
104     }
105
106     public void setModelType(String modelType) {
107         this.modelType = modelType;
108     }
109
110 }