Catalog alignment
[sdc.git] / common-app-logging / src / main / java / org / openecomp / sdc / common / log / elements / LoggerMetric.java
index 3dbcf1d..8af85ea 100644 (file)
@@ -1,23 +1,3 @@
-/*-
- * ============LICENSE_START=======================================================
- * SDC
- * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
-
 package org.openecomp.sdc.common.log.elements;
 
 import org.openecomp.sdc.common.log.api.ILogFieldsHandler;
@@ -33,11 +13,11 @@ import java.util.Arrays;
 import java.util.List;
 
 import static org.onap.logging.ref.slf4j.ONAPLogConstants.MDCs.*;
-import static org.openecomp.sdc.common.log.api.LogConfigurationConstants.*;
+import static org.openecomp.sdc.common.log.api.ILogConfiguration.*;
 
 
 public class LoggerMetric extends LoggerBase {
-    private static List<String> mandatoryFields = new ArrayList<>(Arrays.asList(
+    private static ArrayList<String> mandatoryFields = new ArrayList<>(Arrays.asList(
             INVOKE_TIMESTAMP,
             MDC_END_TIMESTAMP,
             REQUEST_ID,
@@ -51,7 +31,7 @@ public class LoggerMetric extends LoggerBase {
             MDC_SERVER_IP_ADDRESS,
             SERVER_FQDN));
 
-    private static List<String> optionalFields = new ArrayList<>(Arrays.asList(
+    private static ArrayList<String> optionalFields = new ArrayList<>(Arrays.asList(
             MDC_TARGET_VIRTUAL_ENTITY,
             TARGET_ENTITY,
             TARGET_SERVICE_NAME,