Merge automation from ECOMP's repository
[vid.git] / vid-automation / src / main / java / org / onap / sdc / ci / tests / datatypes / ServiceDistributionStatus.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
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.sdc.ci.tests.datatypes;
22
23 public class ServiceDistributionStatus {
24         
25         private String distributionID;
26         private String timestamp;
27         private String userId;
28         private String deployementStatus;
29         
30         public ServiceDistributionStatus() {
31                 super();
32                 // TODO Auto-generated constructor stub
33         }
34
35         public ServiceDistributionStatus(String distributionID, String timestamp, String userId, String deployementStatus) {
36                 super();
37                 this.distributionID = distributionID;
38                 this.timestamp = timestamp;
39                 this.userId = userId;
40                 this.deployementStatus = deployementStatus;
41         }
42
43         @Override
44         public String toString() {
45                 return "ServiceDistributionStatus [distributionID=" + distributionID + ", timestamp=" + timestamp + ", userId=" + userId + ", deployementStatus=" + deployementStatus + "]";
46         }
47
48         public String getDistributionID() {
49                 return distributionID;
50         }
51
52         public void setDistributionID(String distributionID) {
53                 this.distributionID = distributionID;
54         }
55
56         public String getTimestamp() {
57                 return timestamp;
58         }
59
60         public void setTimestamp(String timestamp) {
61                 this.timestamp = timestamp;
62         }
63
64         public String getUserId() {
65                 return userId;
66         }
67
68         public void setUserId(String userId) {
69                 this.userId = userId;
70         }
71
72         public String getDeployementStatus() {
73                 return deployementStatus;
74         }
75
76         public void setDeployementStatus(String deployementStatus) {
77                 this.deployementStatus = deployementStatus;
78         }
79
80 }