Improve test coverage
[sdc.git] / catalog-dao / src / main / java / org / openecomp / sdc / be / resources / data / auditing / GetUsersListEvent.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.GET_USERS_LIST_EVENT_TYPE)
43 public class GetUsersListEvent extends AuditingGenericEvent {
44     @PartitionKey
45     protected UUID timebaseduuid;
46
47     @ClusteringColumn
48     protected Date timestamp1;
49
50     @Column(name = "request_id")
51     protected String requestId;
52     @Column
53     protected String action;
54     @Column
55     protected String status;
56
57     @Column(name = "description")
58     protected String desc;
59
60     @Column
61     private String modifier;
62
63     @Column
64     private String details;
65
66     //Required to be public as it is used by Cassandra driver on get operation
67     public GetUsersListEvent() {
68         timestamp1 = new Date();
69         timebaseduuid = UUIDs.timeBased();
70     }
71
72     public GetUsersListEvent(String action, CommonAuditData commonAuditData, String modifier, String userDetails) {
73         this();
74         this.action = action;
75         this.requestId = commonAuditData.getRequestId();
76         this.status = commonAuditData.getStatus();
77         this.desc = commonAuditData.getDescription();
78         this.modifier = modifier;
79         this.details = userDetails;
80     }
81
82     public void setTimestamp1(String timestamp) {
83         this.timestamp1 = parseDateFromString(timestamp);
84     }
85
86     public void setTimestamp1(Date timestamp1) {
87         this.timestamp1 = timestamp1;
88     }
89
90     @Override
91     public void fillFields() {
92         fields.put(AuditingFieldsKey.AUDIT_REQUEST_ID.getDisplayName(), getRequestId());
93
94         fields.put(AuditingFieldsKey.AUDIT_ACTION.getDisplayName(), getAction());
95         fields.put(AuditingFieldsKey.AUDIT_STATUS.getDisplayName(), getStatus());
96         fields.put(AuditingFieldsKey.AUDIT_DESC.getDisplayName(), getDesc());
97         fields.put(AuditingFieldsKey.AUDIT_USER_DETAILS.getDisplayName(), getDetails());
98         fields.put(AuditingFieldsKey.AUDIT_MODIFIER_UID.getDisplayName(), getModifier());
99         SimpleDateFormat simpleDateFormat = new SimpleDateFormat(dateFormatPattern);
100         simpleDateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
101         fields.put(AuditingFieldsKey.AUDIT_TIMESTAMP.getDisplayName(), simpleDateFormat.format(timestamp1));
102     }
103 }