Merge "Reorder modifiers"
[so.git] / mso-api-handlers / mso-requests-db / src / main / java / org / openecomp / mso / requestsdb / OperationalEnvServiceModelStatus.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 /**
22  * 
23  */
24 package org.openecomp.mso.requestsdb;
25
26 import java.io.Serializable;
27 import java.sql.Timestamp;
28
29 /**
30  * @author PB6115
31  *
32  */
33 public class OperationalEnvServiceModelStatus implements Serializable {
34
35     /**
36          * Serialization id.
37          */
38         private static final long serialVersionUID = 8197084996598869656L;
39         
40         private String requestId = null;
41         private String operationalEnvId = null;
42         private String serviceModelVersionId = null;
43         private String serviceModelVersionDistrStatus = null;
44         private String recoveryAction = null;
45         private int retryCount;
46         private String workloadContext = null;
47         private Timestamp createTime = null;
48         private Timestamp modifyTime = null;
49         
50         public String getRequestId() {
51                 return requestId;
52         }
53         
54         public void setRequestId(String requestId) {
55                 this.requestId = requestId;
56         }
57         
58         public String getOperationalEnvId() {
59                 return operationalEnvId;
60         }
61         
62         public void setOperationalEnvId(String operationalEnvId) {
63                 this.operationalEnvId = operationalEnvId;
64         }
65         
66         public String getServiceModelVersionId() {
67                 return serviceModelVersionId;
68         }
69         
70         public void setServiceModelVersionId(String serviceModelVersionId) {
71                 this.serviceModelVersionId = serviceModelVersionId;
72         }
73         
74         public String getServiceModelVersionDistrStatus() {
75                 return serviceModelVersionDistrStatus;
76         }
77         
78         public void setServiceModelVersionDistrStatus(String serviceModelVersionDistrStatus) {
79                 this.serviceModelVersionDistrStatus = serviceModelVersionDistrStatus;
80         }
81         
82         public String getRecoveryAction() {
83                 return recoveryAction;
84         }
85         
86         public void setRecoveryAction(String recoveryAction) {
87                 this.recoveryAction = recoveryAction;
88         }
89         
90         public int getRetryCount() {
91                 return retryCount;
92         }
93         
94         public void setRetryCount(int retryCount) {
95                 this.retryCount = retryCount;
96         }
97
98         public String getWorkloadContext() {
99                 return workloadContext;
100         }
101
102         public void setWorkloadContext(String workloadContext) {
103                 this.workloadContext = workloadContext;
104         }
105
106         public Timestamp getCreateTime() {
107                 return createTime;
108         }
109         public void setCreateTime(Timestamp createTime) {
110                 this.createTime = createTime;
111         }
112         
113         public Timestamp getModifyTime() {
114                 return modifyTime;
115         }
116         
117         public void setModifyTime(Timestamp modifyTime) {
118                 this.modifyTime = modifyTime;
119         }
120
121 }