2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.onap.so.bpmn.servicedecomposition.modelinfo;
23 import java.io.Serializable;
24 import com.fasterxml.jackson.annotation.JsonProperty;
26 public class ModelInfoServiceInstance extends ModelInfoMetadata implements Serializable {
28 private static final long serialVersionUID = -1812787934683419141L;
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;
50 public String getDescription() {
54 public void setDescription(String description) {
55 this.description = description;
58 public String getCreated() {
62 public void setCreated(String created) {
63 this.created = created;
66 public String getServiceType() {
70 public void setServiceType(String serviceType) {
71 this.serviceType = serviceType;
74 public String getServiceRole() {
78 public void setServiceRole(String serviceRole) {
79 this.serviceRole = serviceRole;
82 public String getServiceFunction() {
83 return serviceFunction;
86 public void setServiceFunction(String serviceFunction) {
87 this.serviceFunction = serviceFunction;
90 public String getEnvironmentContext() {
91 return environmentContext;
94 public void setEnvironmentContext(String environmentContext) {
95 this.environmentContext = environmentContext;
98 public String getWorkloadContext() {
99 return workloadContext;
102 public void setWorkloadContext(String workloadContext) {
103 this.workloadContext = workloadContext;
107 public String getNamingPolicy() {
111 public void setNamingPolicy(String namingPolicy) {
112 this.namingPolicy = namingPolicy;
115 public Boolean getOnapGeneratedNaming() {
116 return onapGeneratedNaming;
119 public void setOnapGeneratedNaming(Boolean onapGeneratedNaming) {
120 this.onapGeneratedNaming = onapGeneratedNaming;