533ca7e99ff581845af876ba67e5c419982acb53
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / info / DistributionStatusOfServiceInfo.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.openecomp.sdc.be.info;
22
23 public class DistributionStatusOfServiceInfo {
24     String distributionID;
25     String timestamp;
26     String userId;
27     String deployementStatus;
28
29     public DistributionStatusOfServiceInfo() {
30         super();
31
32     }
33
34     public DistributionStatusOfServiceInfo(String distributionID, String timestamp, String userId, String deployementStatus) {
35         super();
36         this.distributionID = distributionID;
37         this.timestamp = timestamp;
38         this.userId = userId;
39         this.deployementStatus = deployementStatus;
40     }
41
42     public String getDistributionID() {
43         return distributionID;
44     }
45
46     public void setDistributionID(String distributionID) {
47         this.distributionID = distributionID;
48     }
49
50     public String getTimestamp() {
51         return timestamp;
52     }
53
54     public void setTimestamp(String timestamp) {
55         this.timestamp = timestamp;
56     }
57
58     public String getUserId() {
59         return userId;
60     }
61
62     public void setUserId(String userId) {
63         this.userId = userId;
64     }
65
66     public String getDeployementStatus() {
67         return deployementStatus;
68     }
69
70     public void setDeployementStatus(String deployementStatus) {
71         this.deployementStatus = deployementStatus;
72     }
73
74 }