[SDC-29] rebase continue work to align source
[sdc.git] / test-apis-ci / src / main / java / org / openecomp / sdc / ci / tests / datatypes / expected / ExpectedCategoryAudit.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 ExpectedCategoryAudit {
24         String action;
25         String modifier;
26         String modifierUid;
27         String modifierName;
28         String categoryName;
29         String subCategoryName;
30         String groupingName;
31         String resourceType;
32         String status;
33         String desc;
34         String details;
35
36         public ExpectedCategoryAudit(String action, String modifier, String categoryName, String subCategoryName,
37                         String groupingName, String resourceType, String status, String desc) {
38                 super();
39                 this.action = action;
40                 this.modifier = modifier;
41                 this.categoryName = categoryName;
42                 this.subCategoryName = subCategoryName;
43                 this.groupingName = groupingName;
44                 this.resourceType = resourceType;
45                 this.status = status;
46                 this.desc = desc;
47         }
48
49         public ExpectedCategoryAudit() {
50                 action = null;
51                 modifier = null;
52                 categoryName = null;
53                 subCategoryName = null;
54                 groupingName = null;
55                 resourceType = null;
56                 status = null;
57                 desc = null;
58                 details = null;
59                 modifierName = null;
60                 modifierUid = null;
61         }
62
63         public String getAction() {
64                 return action;
65         }
66
67         public void setAction(String action) {
68                 this.action = action;
69         }
70
71         public String getModifier() {
72                 return modifier;
73         }
74
75         public void setModifier(String modifier) {
76                 this.modifier = modifier;
77         }
78
79         public String getCategoryName() {
80                 return categoryName;
81         }
82
83         public void setCategoryName(String categoryName) {
84                 this.categoryName = categoryName;
85         }
86
87         public String getSubCategoryName() {
88                 return subCategoryName;
89         }
90
91         public void setSubCategoryName(String subCategoryName) {
92                 this.subCategoryName = subCategoryName;
93         }
94
95         public String getGroupingName() {
96                 return groupingName;
97         }
98
99         public void setGroupingName(String groupingName) {
100                 this.groupingName = groupingName;
101         }
102
103         public String getResourceType() {
104                 return resourceType;
105         }
106
107         public void setResourceType(String resourceType) {
108                 this.resourceType = resourceType;
109         }
110
111         public String getStatus() {
112                 return status;
113         }
114
115         public void setStatus(String status) {
116                 this.status = status;
117         }
118
119         public String getDesc() {
120                 return desc;
121         }
122
123         public void setDesc(String desc) {
124                 this.desc = desc;
125         }
126
127         public String getDetails() {
128                 return details;
129         }
130
131         public void setDetails(String details) {
132                 this.details = details;
133         }
134
135         public String getModifierUid() {
136                 return modifierUid;
137         }
138
139         public void setModifierUid(String modifierUid) {
140                 this.modifierUid = modifierUid;
141         }
142
143         public String getModifierName() {
144                 return modifierName;
145         }
146
147         public void setModifierName(String modifierName) {
148                 this.modifierName = modifierName;
149         }
150
151 }