Replaced all tabs with spaces in java and pom.xml
[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("environment-context")
39     private String environmentContext;
40     @JsonProperty("workload-context")
41     private String workloadContext;
42
43
44     public String getDescription() {
45         return description;
46     }
47
48     public void setDescription(String description) {
49         this.description = description;
50     }
51
52     public String getCreated() {
53         return created;
54     }
55
56     public void setCreated(String created) {
57         this.created = created;
58     }
59
60     public String getServiceType() {
61         return serviceType;
62     }
63
64     public void setServiceType(String serviceType) {
65         this.serviceType = serviceType;
66     }
67
68     public String getServiceRole() {
69         return serviceRole;
70     }
71
72     public void setServiceRole(String serviceRole) {
73         this.serviceRole = serviceRole;
74     }
75
76     public String getEnvironmentContext() {
77         return environmentContext;
78     }
79
80     public void setEnvironmentContext(String environmentContext) {
81         this.environmentContext = environmentContext;
82     }
83
84     public String getWorkloadContext() {
85         return workloadContext;
86     }
87
88     public void setWorkloadContext(String workloadContext) {
89         this.workloadContext = workloadContext;
90     }
91 }