Enable ControllerExecutionBB for service scope
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / bpmn / servicedecomposition / modelinfo / ModelInfoServiceInstance.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 ModelInfoServiceInstance extends ModelInfoMetadata implements Serializable {
27
28     private static final long serialVersionUID = -1812787934683419141L;
29
30     @JsonProperty("description")
31     private String description;
32     @JsonProperty("created")
33     private String created;
34     @JsonProperty("service-type")
35     private String serviceType;
36     @JsonProperty("service-role")
37     private String serviceRole;
38     @JsonProperty("service-function")
39     private String serviceFunction;
40     @JsonProperty("environment-context")
41     private String environmentContext;
42     @JsonProperty("workload-context")
43     private String workloadContext;
44     @JsonProperty("naming-policy")
45     private String namingPolicy;
46     @JsonProperty("onap-generated-naming")
47     private Boolean onapGeneratedNaming;
48     @JsonProperty("cds-blueprint-name")
49     private String blueprintName;
50     @JsonProperty("cds-blueprint-version")
51     private String blueprintVersion;
52     @JsonProperty("controller-actor")
53     private String controllerActor;
54     @JsonProperty("skip-post-instantiation-configuration")
55     private Boolean skipPostInstConf = Boolean.TRUE;
56
57
58     public String getDescription() {
59         return description;
60     }
61
62     public void setDescription(String description) {
63         this.description = description;
64     }
65
66     public String getCreated() {
67         return created;
68     }
69
70     public void setCreated(String created) {
71         this.created = created;
72     }
73
74     public String getServiceType() {
75         return serviceType;
76     }
77
78     public void setServiceType(String serviceType) {
79         this.serviceType = serviceType;
80     }
81
82     public String getServiceRole() {
83         return serviceRole;
84     }
85
86     public void setServiceRole(String serviceRole) {
87         this.serviceRole = serviceRole;
88     }
89
90     public String getServiceFunction() {
91         return serviceFunction;
92     }
93
94     public void setServiceFunction(String serviceFunction) {
95         this.serviceFunction = serviceFunction;
96     }
97
98     public String getEnvironmentContext() {
99         return environmentContext;
100     }
101
102     public void setEnvironmentContext(String environmentContext) {
103         this.environmentContext = environmentContext;
104     }
105
106     public String getWorkloadContext() {
107         return workloadContext;
108     }
109
110     public void setWorkloadContext(String workloadContext) {
111         this.workloadContext = workloadContext;
112     }
113
114
115     public String getNamingPolicy() {
116         return namingPolicy;
117     }
118
119     public void setNamingPolicy(String namingPolicy) {
120         this.namingPolicy = namingPolicy;
121     }
122
123     public Boolean getOnapGeneratedNaming() {
124         return onapGeneratedNaming;
125     }
126
127     public void setOnapGeneratedNaming(Boolean onapGeneratedNaming) {
128         this.onapGeneratedNaming = onapGeneratedNaming;
129     }
130
131     public String getBlueprintName() {
132         return blueprintName;
133     }
134
135     public void setBlueprintName(String blueprintName) {
136         this.blueprintName = blueprintName;
137     }
138
139     public String getBlueprintVersion() {
140         return blueprintVersion;
141     }
142
143     public void setBlueprintVersion(String blueprintVersion) {
144         this.blueprintVersion = blueprintVersion;
145     }
146
147     public String getControllerActor() {
148         return controllerActor;
149     }
150
151     public void setControllerActor(String controllerActor) {
152         this.controllerActor = controllerActor;
153     }
154
155     public Boolean getSkipPostInstConf() {
156         return skipPostInstConf;
157     }
158
159     public void setSkipPostInstConf(Boolean skipPostInstConf) {
160         this.skipPostInstConf = skipPostInstConf;
161     }
162 }