Improve test coverage
[sdc.git] / catalog-dao / src / main / java / org / openecomp / sdc / be / resources / data / auditing / UserAccessEvent.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 lombok.Getter;
29 import lombok.Setter;
30 import lombok.ToString;
31 import org.openecomp.sdc.be.resources.data.auditing.model.CommonAuditData;
32 import org.openecomp.sdc.common.datastructure.AuditingFieldsKey;
33
34 import java.text.SimpleDateFormat;
35 import java.util.Date;
36 import java.util.TimeZone;
37 import java.util.UUID;
38
39 @Getter
40 @Setter
41 @ToString
42 @Table(keyspace = AuditingTypesConstants.AUDIT_KEYSPACE, name = AuditingTypesConstants.USER_ACCESS_EVENT_TYPE)
43 public class UserAccessEvent extends AuditingGenericEvent {
44
45     @PartitionKey
46     protected UUID timebaseduuid;
47
48     @ClusteringColumn
49     protected Date timestamp1;
50
51     @Column(name = "REQUEST_ID")
52     protected String requestId;
53
54     @Column(name = "USER")
55     private String userUid;
56
57     @Column
58     private String status;
59
60     @Column(name = "DESCRIPTION")
61     private String desc;
62
63     @Column
64     private String action;
65
66     @Column(name = "service_instance_id")
67     private String serviceInstanceId;
68
69     //Required to be public as it is used by Cassandra driver on get operation
70     public UserAccessEvent() {
71         timestamp1 = new Date();
72         timebaseduuid = UUIDs.timeBased();
73     }
74
75     public UserAccessEvent(String action, CommonAuditData commonAuditData, String user) {
76         this();
77         this.action = action;
78         this.requestId = commonAuditData.getRequestId();
79         this.userUid = user;
80         this.status = commonAuditData.getStatus();
81         this.desc = commonAuditData.getDescription();
82         this.serviceInstanceId = commonAuditData.getServiceInstanceId();
83     }
84
85     public void setTimestamp1(String timestamp) {
86         this.timestamp1 = parseDateFromString(timestamp);
87     }
88
89     public void setTimestamp1(Date timestamp) {
90         this.timestamp1 = timestamp;
91     }
92
93     @Override
94     public void fillFields() {
95         fields.put(AuditingFieldsKey.AUDIT_REQUEST_ID.getDisplayName(), getRequestId());
96
97         fields.put(AuditingFieldsKey.AUDIT_SERVICE_INSTANCE_ID.getDisplayName(), getServiceInstanceId());
98         fields.put(AuditingFieldsKey.AUDIT_ACTION.getDisplayName(), getAction());
99         fields.put(AuditingFieldsKey.AUDIT_STATUS.getDisplayName(), getStatus());
100         fields.put(AuditingFieldsKey.AUDIT_DESC.getDisplayName(), getDesc());
101         fields.put(AuditingFieldsKey.AUDIT_USER_UID.getDisplayName(), getUserUid());
102         SimpleDateFormat simpleDateFormat = new SimpleDateFormat(dateFormatPattern);
103         simpleDateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
104         fields.put(AuditingFieldsKey.AUDIT_TIMESTAMP.getDisplayName(), simpleDateFormat.format(timestamp1));
105     }
106 }