Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / bpmn / servicedecomposition / modelinfo / ModelInfoConfiguration.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 import com.fasterxml.jackson.annotation.JsonProperty;
25
26 public class ModelInfoConfiguration implements Serializable {
27
28     private static final long serialVersionUID = -387242776138157250L;
29
30     @JsonProperty("model-invariant-id")
31     private String modelInvariantId;
32     @JsonProperty("model-version-id")
33     private String modelVersionId;
34     @JsonProperty("model-customization-id")
35     private String modelCustomizationId;
36     @JsonProperty("configuration-type")
37     private String configurationType;
38     @JsonProperty("configuration-role")
39     private String configurationRole;
40     @JsonProperty("policy-name")
41     private String policyName;
42
43     public String getConfigurationRole() {
44         return configurationRole;
45     }
46
47     public void setConfigurationRole(String configurationRole) {
48         this.configurationRole = configurationRole;
49     }
50
51     public String getConfigurationType() {
52         return configurationType;
53     }
54
55     public void setConfigurationType(String configurationType) {
56         this.configurationType = configurationType;
57     }
58
59     public String getModelInvariantId() {
60         return modelInvariantId;
61     }
62
63     public void setModelInvariantId(String modelInvariantId) {
64         this.modelInvariantId = modelInvariantId;
65     }
66
67     public String getModelVersionId() {
68         return modelVersionId;
69     }
70
71     public void setModelVersionId(String modelVersionId) {
72         this.modelVersionId = modelVersionId;
73     }
74
75     public String getModelCustomizationId() {
76         return modelCustomizationId;
77     }
78
79     public void setModelCustomizationId(String modelCustomizationId) {
80         this.modelCustomizationId = modelCustomizationId;
81     }
82
83     public String getPolicyName() {
84         return policyName;
85     }
86
87     public void setPolicyName(String policyName) {
88         this.policyName = policyName;
89     }
90 }