Added oparent to sdc main
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / auditing / impl / category / AuditCategoryEventFactory.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.CategoryEvent;
28 import org.openecomp.sdc.be.resources.data.auditing.model.CommonAuditData;
29
30 public class AuditCategoryEventFactory extends AuditBaseEventFactory {
31
32     private static final  String LOG_STR = "ACTION = \"%s\" MODIFIER = \"%s\" CATEGORY_NAME = \"%s\" SUB_CATEGORY_NAME = \"%s\"" +
33             " GROUPING_NAME = \"%s\" RESOURCE_TYPE = \"%s\" STATUS = \"%s\" DESC = \"%s\"";
34     private final CategoryEvent event;
35
36
37     private AuditCategoryEventFactory(AuditingActionEnum action, CommonAuditData commonFields, String modifier, String categoryName,
38                                       String subCategoryName, String groupingName, String resourceType) {
39         super(action);
40         event = new CategoryEvent(getAction().getName(), commonFields, modifier, categoryName,
41                 subCategoryName, groupingName, resourceType);
42     }
43
44     public AuditCategoryEventFactory(AuditingActionEnum action, CommonAuditData commonFields, User modifier,
45                                      String categoryName, String subCategoryName, String groupingName, String resourceType) {
46         this(action, commonFields, buildUserName(modifier), categoryName, subCategoryName, groupingName, resourceType);
47     }
48
49     public AuditCategoryEventFactory(AuditingActionEnum action, CommonAuditData commonFields, String modifier, String categoryName,
50                                      String subCategoryName, String groupingName, String resourceType, String timestamp) {
51         this(action, commonFields, modifier, categoryName, subCategoryName, groupingName, resourceType);
52         event.setTimestamp1(timestamp);
53     }
54
55     @Override
56     public String getLogPattern() {
57         return LOG_STR;
58     }
59
60     @Override
61     public String[] getLogMessageParams() {
62         return new String[] {event.getAction(), event.getModifier(), event.getCategoryName(), event.getSubCategoryName(),
63                 event.getGroupingName(), event.getResourceType(), event.getStatus(), event.getDesc()};
64     }
65
66     @Override
67     public AuditingGenericEvent getDbEvent() {
68         return event;
69     }
70
71
72 }