8037a090ba6f80ecd516efef767ed9b3da1708bb
[sdc.git] / catalog-dao / src / main / java / org / openecomp / sdc / be / resources / data / auditing / GetCategoryHierarchyEvent.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 com.datastax.driver.core.utils.UUIDs;
24 import com.datastax.driver.mapping.annotations.ClusteringColumn;
25 import com.datastax.driver.mapping.annotations.Column;
26 import com.datastax.driver.mapping.annotations.PartitionKey;
27 import com.datastax.driver.mapping.annotations.Table;
28 import org.openecomp.sdc.be.resources.data.auditing.model.CommonAuditData;
29 import org.openecomp.sdc.common.datastructure.AuditingFieldsKey;
30
31 import java.text.SimpleDateFormat;
32 import java.util.Date;
33 import java.util.TimeZone;
34 import java.util.UUID;
35
36 @Table(keyspace = AuditingTypesConstants.AUDIT_KEYSPACE, name = AuditingTypesConstants.GET_CATEGORY_HIERARCHY_EVENT_TYPE)
37 public class GetCategoryHierarchyEvent extends AuditingGenericEvent {
38     @PartitionKey
39     protected UUID timebaseduuid;
40
41     @ClusteringColumn()
42     // @Column(name="timestamp")
43     protected Date timestamp1;
44
45     @Column(name = "request_id")
46     protected String requestId;
47     @Column
48     protected String action;
49     @Column
50     protected String status;
51
52     @Column(name = "description")
53     protected String desc;
54
55     @Column
56     private String modifier;
57
58     @Column
59     private String details;
60
61     //Required to be public as it is used by Cassandra driver on get operation
62     public GetCategoryHierarchyEvent() {
63         timestamp1 = new Date();
64         timebaseduuid = UUIDs.timeBased();
65     }
66
67     public GetCategoryHierarchyEvent(String action, CommonAuditData commonAuditData, String modifier, String details) {
68         this();
69         this.action = action;
70         this.requestId = commonAuditData.getRequestId();
71         this.desc = commonAuditData.getDescription();
72         this.status = commonAuditData.getStatus();
73         this.modifier = modifier;
74         this.details = details;
75     }
76
77     public void setTimestamp1(String timestamp) {
78         this.timestamp1 = parseDateFromString(timestamp);
79     }
80
81         @Override
82     public void fillFields() {
83         fields.put(AuditingFieldsKey.AUDIT_REQUEST_ID.getDisplayName(), getRequestId());
84
85         fields.put(AuditingFieldsKey.AUDIT_SERVICE_INSTANCE_ID.getDisplayName(), getServiceInstanceId());
86         fields.put(AuditingFieldsKey.AUDIT_ACTION.getDisplayName(), getAction());
87         fields.put(AuditingFieldsKey.AUDIT_STATUS.getDisplayName(), getStatus());
88         fields.put(AuditingFieldsKey.AUDIT_DESC.getDisplayName(), getDesc());
89         fields.put(AuditingFieldsKey.AUDIT_DETAILS.getDisplayName(), getDetails());
90         SimpleDateFormat simpleDateFormat = new SimpleDateFormat(dateFormatPattern);
91         simpleDateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
92         fields.put(AuditingFieldsKey.AUDIT_TIMESTAMP.getDisplayName(), simpleDateFormat.format(timestamp1));
93     }
94
95     public UUID getTimebaseduuid() {
96         return timebaseduuid;
97     }
98
99     public void setTimebaseduuid(UUID timebaseduuid) {
100         this.timebaseduuid = timebaseduuid;
101     }
102
103     public Date getTimestamp1() {
104         return timestamp1;
105     }
106
107     public void setTimestamp1(Date timestamp1) {
108         this.timestamp1 = timestamp1;
109     }
110
111     public String getRequestId() {
112         return requestId;
113     }
114
115     public void setRequestId(String requestId) {
116         this.requestId = requestId;
117     }
118
119     public String getAction() {
120         return action;
121     }
122
123     public void setAction(String action) {
124         this.action = action;
125     }
126
127     public String getStatus() {
128         return status;
129     }
130
131     public void setStatus(String status) {
132         this.status = status;
133     }
134
135     public String getDesc() {
136         return desc;
137     }
138
139     public void setDesc(String desc) {
140         this.desc = desc;
141     }
142
143     public String getModifier() {
144         return modifier;
145     }
146
147     public void setModifier(String modifier) {
148         this.modifier = modifier;
149     }
150
151     public String getDetails() {
152         return details;
153     }
154
155     public void setDetails(String details) {
156         this.details = details;
157     }
158
159     @Override
160     public String toString() {
161         return "GetCategoryHierarchyEvent [timebaseduuid=" + timebaseduuid + ", timestamp1=" + timestamp1
162                 + ", requestId=" + requestId + ", action=" + action + ", status=" + status + ", desc=" + desc
163                 + ", modifier=" + modifier + ", details=" + details + "]";
164     }
165
166 }