diff --git a/framework/api/src/org/ofbiz/api/context/ExecutionContextFactory.java b/framework/api/src/org/ofbiz/api/context/ExecutionContextFactory.java index 4d2b58bfb74..886e624eae9 100644 --- a/framework/api/src/org/ofbiz/api/context/ExecutionContextFactory.java +++ b/framework/api/src/org/ofbiz/api/context/ExecutionContextFactory.java @@ -25,7 +25,7 @@ */ public class ExecutionContextFactory { - protected static final String module = ExecutionContextFactory.class.getName(); + public static final String module = ExecutionContextFactory.class.getName(); public static ExecutionContext getInstance() { ExecutionContext result = null; diff --git a/framework/api/src/org/ofbiz/api/context/ThreadContext.java b/framework/api/src/org/ofbiz/api/context/ThreadContext.java index a7d21f59455..e9ed825c476 100644 --- a/framework/api/src/org/ofbiz/api/context/ThreadContext.java +++ b/framework/api/src/org/ofbiz/api/context/ThreadContext.java @@ -31,7 +31,7 @@ */ public class ThreadContext { - protected static final String module = ThreadContext.class.getName(); + public static final String module = ThreadContext.class.getName(); protected static final ThreadLocal executionContext = new ThreadLocal() { protected synchronized ExecutionContext initialValue() { diff --git a/framework/context/src/org/ofbiz/context/SecurityAwareList.java b/framework/context/src/org/ofbiz/context/SecurityAwareList.java index 4fa29d5772b..77ae35e384b 100644 --- a/framework/context/src/org/ofbiz/context/SecurityAwareList.java +++ b/framework/context/src/org/ofbiz/context/SecurityAwareList.java @@ -30,7 +30,7 @@ @SuppressWarnings("serial") public class SecurityAwareList extends ArrayList implements List { - protected final static String module = SecurityAwareList.class.getName(); + public final static String module = SecurityAwareList.class.getName(); protected final Set serviceNameList; public SecurityAwareList(List valueList, Set serviceNameList) {