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