Initial OpenECOMP MSO commit
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / openecomp / mso / apihandlerinfra / serviceinstancebeans / ModelInfo.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * OPENECOMP - MSO
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 //
22 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 
23 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
24 // Any modifications to this file will be lost upon recompilation of the source schema. 
25 // Generated on: 2016.03.30 at 02:48:23 PM CDT 
26 //
27
28
29 package org.openecomp.mso.apihandlerinfra.serviceinstancebeans;
30
31 import org.codehaus.jackson.map.annotate.JsonSerialize;
32
33 import org.openecomp.mso.apihandlerinfra.ModelType;
34
35 @JsonSerialize(include=JsonSerialize.Inclusion.NON_DEFAULT)
36 public class ModelInfo {
37
38     protected String modelCustomizationName;
39     protected String modelInvariantId;
40         protected ModelType modelType;
41     protected String modelNameVersionId;
42     protected String modelName;
43     protected String modelVersion;
44     
45     
46         public String getModelCustomizationName() {
47                 return modelCustomizationName;
48         }
49         public void setModelCustomizationName(String modelCustomizationName) {
50                 this.modelCustomizationName = modelCustomizationName;
51         }
52         public String getModelNameVersionId() {
53                 return modelNameVersionId;
54         }
55         public void setModelNameVersionId(String modelNameVersionId) {
56                 this.modelNameVersionId = modelNameVersionId;
57         }
58         public String getModelName() {
59                 return modelName;
60         }
61         public void setModelName(String modelName) {
62                 this.modelName = modelName;
63         }
64         public String getModelVersion() {
65                 return modelVersion;
66         }
67         public void setModelVersion(String modelVersion) {
68                 this.modelVersion = modelVersion;
69         }
70         public ModelType getModelType() {
71                 return modelType;
72         }
73         public void setModelType(ModelType modelType) {
74                 this.modelType = modelType;
75         }
76         public String getModelInvariantId() {
77                 return modelInvariantId;
78         }
79         public void setModelInvariantId(String modelInvariantId) {
80                 this.modelInvariantId = modelInvariantId;
81         }
82         
83
84 }