b554d7a9ba6cc919996059c1b4798e9941591c77
[so.git] /
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
49
50     public String getDescription() {
51         return description;
52     }
53
54     public void setDescription(String description) {
55         this.description = description;
56     }
57
58     public String getCreated() {
59         return created;
60     }
61
62     public void setCreated(String created) {
63         this.created = created;
64     }
65
66     public String getServiceType() {
67         return serviceType;
68     }
69
70     public void setServiceType(String serviceType) {
71         this.serviceType = serviceType;
72     }
73
74     public String getServiceRole() {
75         return serviceRole;
76     }
77
78     public void setServiceRole(String serviceRole) {
79         this.serviceRole = serviceRole;
80     }
81
82     public String getServiceFunction() {
83         return serviceFunction;
84     }
85
86     public void setServiceFunction(String serviceFunction) {
87         this.serviceFunction = serviceFunction;
88     }
89
90     public String getEnvironmentContext() {
91         return environmentContext;
92     }
93
94     public void setEnvironmentContext(String environmentContext) {
95         this.environmentContext = environmentContext;
96     }
97
98     public String getWorkloadContext() {
99         return workloadContext;
100     }
101
102     public void setWorkloadContext(String workloadContext) {
103         this.workloadContext = workloadContext;
104     }
105
106
107     public String getNamingPolicy() {
108         return namingPolicy;
109     }
110
111     public void setNamingPolicy(String namingPolicy) {
112         this.namingPolicy = namingPolicy;
113     }
114
115     public Boolean getOnapGeneratedNaming() {
116         return onapGeneratedNaming;
117     }
118
119     public void setOnapGeneratedNaming(Boolean onapGeneratedNaming) {
120         this.onapGeneratedNaming = onapGeneratedNaming;
121     }
122 }