Initial OpenECOMP SDC commit
[sdc.git] / catalog-dao / src / main / java / org / openecomp / sdc / be / resources / data / auditing / AuditingGenericEvent.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.be.resources.data.auditing;
22
23 import org.openecomp.sdc.common.datastructure.ESTimeBasedEvent;
24
25 public class AuditingGenericEvent extends ESTimeBasedEvent {
26         protected String requestId;
27         protected String serviceInstanceId;
28         protected String action;
29         protected String status;
30
31         protected String desc;
32
33         // protected Map<String, Object> fields = new HashMap<String, Object>();
34
35         public AuditingGenericEvent() {
36                 super();
37         }
38
39         public String getRequestId() {
40                 return requestId;
41         }
42
43         public void setRequestId(String requestId) {
44                 this.requestId = requestId;
45
46         }
47
48         public String getServiceInstanceId() {
49                 return serviceInstanceId;
50         }
51
52         public void setServiceInstanceId(String serviceInstanceId) {
53                 this.serviceInstanceId = serviceInstanceId;
54         }
55
56         public String getAction() {
57                 return action;
58         }
59
60         public void setAction(String action) {
61                 this.action = action;
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         // public Map<String, Object> getFields() {
80         // return fields;
81         // }
82         //
83         // public void setFields(Map<String, Object> fields) {
84         // this.fields = fields;
85         // }
86
87         public void fillFields() {
88
89         }
90
91 }