[SDC-29] rebase continue work to align source
[sdc.git] / test-apis-ci / src / main / java / org / openecomp / sdc / ci / tests / datatypes / expected / ExpectedDistDownloadAudit.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 ExpectedDistDownloadAudit {
24
25         String action;
26         String consumerId;
27         String resourceUrl;
28         String status;
29         String desc;
30
31         public ExpectedDistDownloadAudit(String action, String consumerId, String resourceUrl, String status, String desc) {
32                 super();
33                 this.action = action;
34                 this.consumerId = consumerId;
35                 this.resourceUrl = resourceUrl;
36                 this.status = status;
37                 this.desc = desc;
38         }
39
40         public String getAction() {
41                 return action;
42         }
43
44         public void setAction(String action) {
45                 this.action = action;
46         }
47
48         public String getConsumerId() {
49                 return consumerId;
50         }
51
52         public void setConsumerId(String consumerId) {
53                 this.consumerId = consumerId;
54         }
55
56         public String getResourceUrl() {
57                 return resourceUrl;
58         }
59
60         public void setResourceUrl(String resourceUrl) {
61                 this.resourceUrl = resourceUrl;
62         }
63
64         public String getStatus() {
65                 return status;
66         }
67
68         public void setStatus(String status) {
69                 this.status = status;
70         }
71
72         public String getDesc() {
73                 return desc;
74         }
75
76         public void setDesc(String desc) {
77                 this.desc = desc;
78         }
79 }