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