621d0b90a0677e6a0368b48a3b715dfffe33b54b
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / auditing / impl / category / AuditGetCategoryHierarchyEventFactory.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 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.auditing.impl.category;
22
23 import org.openecomp.sdc.be.auditing.impl.AuditBaseEventFactory;
24 import org.openecomp.sdc.be.model.User;
25 import org.openecomp.sdc.be.resources.data.auditing.AuditingActionEnum;
26 import org.openecomp.sdc.be.resources.data.auditing.AuditingGenericEvent;
27 import org.openecomp.sdc.be.resources.data.auditing.GetCategoryHierarchyEvent;
28 import org.openecomp.sdc.be.resources.data.auditing.model.CommonAuditData;
29
30 public class AuditGetCategoryHierarchyEventFactory extends AuditBaseEventFactory {
31
32     private static final String LOG_STR = "ACTION = \"%s\" MODIFIER = \"%s\" DETAILS = \"%s\" STATUS = \"%s\" DESC = \"%s\"";
33     private final  GetCategoryHierarchyEvent event;
34
35     public AuditGetCategoryHierarchyEventFactory(CommonAuditData commonFields, User modifier, String details) {
36         this(commonFields, buildUserName(modifier), details);
37     }
38
39     public AuditGetCategoryHierarchyEventFactory(CommonAuditData commonFields, String modifier, String details, String timestamp) {
40         this(commonFields, modifier, details);
41         this.event.setTimestamp1(timestamp);
42     }
43
44     private AuditGetCategoryHierarchyEventFactory(CommonAuditData commonFields, String modifier, String details) {
45         super(AuditingActionEnum.GET_CATEGORY_HIERARCHY);
46         event = new GetCategoryHierarchyEvent(getAction().getName(), commonFields, modifier, details);
47     }
48
49     @Override
50     public String getLogPattern() {
51         return LOG_STR;
52     }
53
54     @Override
55     public String[] getLogMessageParams() {
56         return new String[] {event.getAction(), event.getModifier(), event.getDetails(), event.getStatus(), event.getDesc()};
57     }
58
59     @Override
60     public AuditingGenericEvent getDbEvent() {
61         return event;
62     }
63
64
65 }