[SDC-29] rebase continue work to align source
[sdc.git] / test-apis-ci / src / main / java / org / openecomp / sdc / ci / tests / datatypes / expected / ExpectedUserCRUDAudit.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.ci.tests.datatypes.expected;
22
23 public class ExpectedUserCRUDAudit {
24         String action;
25         String modifier;
26         String status;
27         String desc;
28         String userBefore;
29         String userAfter;
30
31         public ExpectedUserCRUDAudit(String action, String modifier, String status, String desc, String userBefore,
32                         String userAfter) {
33                 super();
34                 this.action = action;
35                 this.modifier = modifier;
36                 this.status = status;
37                 this.desc = desc;
38                 this.userBefore = userBefore;
39                 this.userAfter = userAfter;
40         }
41
42         public ExpectedUserCRUDAudit() {
43                 action = null;
44                 modifier = null;
45                 userBefore = null;
46                 userAfter = null;
47                 status = null;
48                 desc = null;
49         }
50
51         public String getAction() {
52                 return action;
53         }
54
55         public void setAction(String action) {
56                 this.action = action;
57         }
58
59         public String getModifier() {
60                 return modifier;
61         }
62
63         public void setModifier(String modifier) {
64                 this.modifier = modifier;
65         }
66
67         public String getStatus() {
68                 return status;
69         }
70
71         public void setStatus(String status) {
72                 this.status = status;
73         }
74
75         public String getDesc() {
76                 return desc;
77         }
78
79         public void setDesc(String desc) {
80                 this.desc = desc;
81         }
82
83         public String getUserBefore() {
84                 return userBefore;
85         }
86
87         public void setUserBefore(String userBefore) {
88                 this.userBefore = userBefore;
89         }
90
91         public String getUserAfter() {
92                 return userAfter;
93         }
94
95         public void setUserAfter(String userAfter) {
96                 this.userAfter = userAfter;
97         }
98 }