Fix for radio buttons
[sdc.git] / asdc-tests / src / main / java / org / openecomp / sdc / ci / tests / datatypes / expected / ExpectedEcomConsumerAudit.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 ExpectedEcomConsumerAudit {
24
25         String action;
26         String modifier;
27         String ecomUser;
28         String status;
29         String desc;
30
31         public ExpectedEcomConsumerAudit(String action, String modifier, String ecomUser, String status, String desc) {
32                 super();
33                 this.action = action;
34                 this.modifier = modifier;
35                 this.ecomUser = ecomUser;
36                 this.status = status;
37                 this.desc = desc;
38         }
39
40         public ExpectedEcomConsumerAudit() {
41                 action = null;
42                 modifier = null;
43                 ecomUser = null;
44                 status = null;
45                 desc = null;
46         }
47
48         public String getAction() {
49                 return action;
50         }
51
52         public void setAction(String action) {
53                 this.action = action;
54         }
55
56         public String getModifier() {
57                 return modifier;
58         }
59
60         public void setModifier(String modifier) {
61                 this.modifier = modifier;
62         }
63
64         public String getEcomUser() {
65                 return ecomUser;
66         }
67
68         public void setEcomUser(String ecomUser) {
69                 this.ecomUser = ecomUser;
70         }
71
72         public String getStatus() {
73                 return status;
74         }
75
76         public void setStatus(String status) {
77                 this.status = status;
78         }
79
80         public String getDesc() {
81                 return desc;
82         }
83
84         public void setDesc(String desc) {
85                 this.desc = desc;
86         }
87
88 }