805ece9de848d78329d43ac8e49b338bfb09224e
[so.git] / bpmn / so-bpmn-infrastructure-common / src / main / java / org / onap / so / bpmn / infrastructure / aai / groovyflows / AAIServiceInstance.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.infrastructure.aai.groovyflows;
22
23 public class AAIServiceInstance {
24         String serviceInstanceName;             
25         String serviceType;
26         String serviceRole;
27         String orchestrationStatus;     
28         String modelInvariantUuid;      
29         String modelVersionId;          
30         String environmentContext;
31         String workloadContext;
32         public AAIServiceInstance(String serviceInstanceName, String serviceType, String serviceRole,
33                         String orchestrationStatus, String modelInvariantUuid, String modelVersionId, String environmentContext,
34                         String workloadContext) {
35                 this.serviceInstanceName = serviceInstanceName;
36                 this.serviceType = serviceType;
37                 this.serviceRole = serviceRole;
38                 this.orchestrationStatus = orchestrationStatus;
39                 this.modelInvariantUuid = modelInvariantUuid;
40                 this.modelVersionId = modelVersionId;
41                 this.environmentContext = environmentContext;
42                 this.workloadContext = workloadContext;
43         }
44         public String getServiceInstanceName() {
45                 return serviceInstanceName;
46         }
47         public void setServiceInstanceName(String serviceInstanceName) {
48                 this.serviceInstanceName = serviceInstanceName;
49         }
50         public String getServiceType() {
51                 return serviceType;
52         }
53         public void setServiceType(String serviceType) {
54                 this.serviceType = serviceType;
55         }
56         public String getServiceRole() {
57                 return serviceRole;
58         }
59         public void setServiceRole(String serviceRole) {
60                 this.serviceRole = serviceRole;
61         }
62         public String getOrchestrationStatus() {
63                 return orchestrationStatus;
64         }
65         public void setOrchestrationStatus(String orchestrationStatus) {
66                 this.orchestrationStatus = orchestrationStatus;
67         }
68         public String getModelInvariantUuid() {
69                 return modelInvariantUuid;
70         }
71         public void setModelInvariantUuid(String modelInvariantUuid) {
72                 this.modelInvariantUuid = modelInvariantUuid;
73         }
74         public String getModelVersionId() {
75                 return modelVersionId;
76         }
77         public void setModelVersionId(String modelVersionId) {
78                 this.modelVersionId = modelVersionId;
79         }
80         public String getEnvironmentContext() {
81                 return environmentContext;
82         }
83         public void setEnvironmentContext(String environmentContext) {
84                 this.environmentContext = environmentContext;
85         }
86         public String getWorkloadContext() {
87                 return workloadContext;
88         }
89         public void setWorkloadContext(String workloadContext) {
90                 this.workloadContext = workloadContext;
91         }
92         
93
94 }