aboutsummaryrefslogtreecommitdiffstats
path: root/common-logging/src/main/java/org/onap/policy/common/logging/eelf/DroolsPDPMDCInfo.java
diff options
context:
space:
mode:
authorJorge Hernandez <jh1730@att.com>2018-02-20 22:34:11 +0000
committerGerrit Code Review <gerrit@onap.org>2018-02-20 22:34:11 +0000
commitd6a109974fb3af882f297d6317832dfca8fafaac (patch)
treef415683b447ca4e020695605ae64a8d166870565 /common-logging/src/main/java/org/onap/policy/common/logging/eelf/DroolsPDPMDCInfo.java
parentd87ae428f0e9b2941bd7a341ce92bbb2549d18d5 (diff)
parent7f6b1b0add6878e996e559c15337f46339c98901 (diff)
Merge "Increase junit coverage in ONAP-logging"
Diffstat (limited to 'common-logging/src/main/java/org/onap/policy/common/logging/eelf/DroolsPDPMDCInfo.java')
-rw-r--r--common-logging/src/main/java/org/onap/policy/common/logging/eelf/DroolsPDPMDCInfo.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/common-logging/src/main/java/org/onap/policy/common/logging/eelf/DroolsPDPMDCInfo.java b/common-logging/src/main/java/org/onap/policy/common/logging/eelf/DroolsPDPMDCInfo.java
index c1e99822..ae4cc929 100644
--- a/common-logging/src/main/java/org/onap/policy/common/logging/eelf/DroolsPDPMDCInfo.java
+++ b/common-logging/src/main/java/org/onap/policy/common/logging/eelf/DroolsPDPMDCInfo.java
@@ -1,8 +1,8 @@
-/*-
+/*
* ============LICENSE_START=======================================================
* ONAP-Logging
* ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2017-2018 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.
@@ -21,6 +21,7 @@
package org.onap.policy.common.logging.eelf;
import java.util.concurrent.ConcurrentHashMap;
+import java.util.concurrent.ConcurrentMap;
public class DroolsPDPMDCInfo implements MDCInfo {
@@ -43,7 +44,7 @@ public class DroolsPDPMDCInfo implements MDCInfo {
* @return the instance of ConcurrentHashMap
*/
@Override
- public ConcurrentHashMap<String, String> getMDCInfo() {
+ public ConcurrentMap<String, String> getMDCInfo() {
return mdcMap;
}
}