re base code
[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 import java.util.Date;
26
27 public class AuditingGenericEvent extends ESTimeBasedEvent {
28     protected String requestId;
29     protected String serviceInstanceId;
30     protected String action;
31     protected String status;
32
33     protected String desc;
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
80     public void fillFields() {
81
82     }
83
84     protected Date parseDateFromString(final String timestamp) {
85         try {
86             return simpleDateFormat.parse(timestamp);
87         }
88         catch (Exception e) {
89             return new Date();
90         }
91     }
92
93 }