a4b688085cf81ce3383bbeb221468e9e301a1aa9
[sdc.git] /
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 package org.openecomp.sdcrests.item.types;
21
22 import java.util.Date;
23
24 public class ActivityLogDto {
25
26     private String id;
27     private Date timestamp;
28     private String type;
29     private String comment;
30     private String user;
31     private ActivityStatus status;
32
33     public ActivityLogDto() {
34     }
35
36     public String getId() {
37         return id;
38     }
39
40     public void setId(String id) {
41         this.id = id;
42     }
43
44     public Date getTimestamp() {
45         return timestamp;
46     }
47
48     public void setTimestamp(Date timestamp) {
49         this.timestamp = timestamp;
50     }
51
52     public String getType() {
53         return type;
54     }
55
56     public void setType(String type) {
57         this.type = type;
58     }
59
60     public String getComment() {
61         return comment;
62     }
63
64     public void setComment(String comment) {
65         this.comment = comment;
66     }
67
68     public String getUser() {
69         return user;
70     }
71
72     public void setUser(String user) {
73         this.user = user;
74     }
75
76     public ActivityStatus getStatus() {
77         return status;
78     }
79
80     public void setStatus(ActivityStatus status) {
81         this.status = status;
82     }
83 }