Author: doogie
Date: Thu Jan 14 18:38:54 2010
New Revision: 899349
URL:
http://svn.apache.org/viewvc?rev=899349&view=revLog:
Make the debug module variable public, like the rest of the code.
Modified:
ofbiz/branches/executioncontext20091231/framework/api/src/org/ofbiz/api/context/ExecutionContextFactory.java
ofbiz/branches/executioncontext20091231/framework/api/src/org/ofbiz/api/context/ThreadContext.java
ofbiz/branches/executioncontext20091231/framework/context/src/org/ofbiz/context/SecurityAwareList.java
Modified: ofbiz/branches/executioncontext20091231/framework/api/src/org/ofbiz/api/context/ExecutionContextFactory.java
URL:
http://svn.apache.org/viewvc/ofbiz/branches/executioncontext20091231/framework/api/src/org/ofbiz/api/context/ExecutionContextFactory.java?rev=899349&r1=899348&r2=899349&view=diff==============================================================================
--- ofbiz/branches/executioncontext20091231/framework/api/src/org/ofbiz/api/context/ExecutionContextFactory.java (original)
+++ ofbiz/branches/executioncontext20091231/framework/api/src/org/ofbiz/api/context/ExecutionContextFactory.java Thu Jan 14 18:38:54 2010
@@ -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;
Modified: ofbiz/branches/executioncontext20091231/framework/api/src/org/ofbiz/api/context/ThreadContext.java
URL:
http://svn.apache.org/viewvc/ofbiz/branches/executioncontext20091231/framework/api/src/org/ofbiz/api/context/ThreadContext.java?rev=899349&r1=899348&r2=899349&view=diff==============================================================================
--- ofbiz/branches/executioncontext20091231/framework/api/src/org/ofbiz/api/context/ThreadContext.java (original)
+++ ofbiz/branches/executioncontext20091231/framework/api/src/org/ofbiz/api/context/ThreadContext.java Thu Jan 14 18:38:54 2010
@@ -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> executionContext = new ThreadLocal<ExecutionContext>() {
protected synchronized ExecutionContext initialValue() {
Modified: ofbiz/branches/executioncontext20091231/framework/context/src/org/ofbiz/context/SecurityAwareList.java
URL:
http://svn.apache.org/viewvc/ofbiz/branches/executioncontext20091231/framework/context/src/org/ofbiz/context/SecurityAwareList.java?rev=899349&r1=899348&r2=899349&view=diff==============================================================================
--- ofbiz/branches/executioncontext20091231/framework/context/src/org/ofbiz/context/SecurityAwareList.java (original)
+++ ofbiz/branches/executioncontext20091231/framework/context/src/org/ofbiz/context/SecurityAwareList.java Thu Jan 14 18:38:54 2010
@@ -30,7 +30,7 @@
@SuppressWarnings("serial")
public class SecurityAwareList<E> extends ArrayList<E> implements List<E> {
- protected final static String module = SecurityAwareList.class.getName();
+ public final static String module = SecurityAwareList.class.getName();
protected final Set<String> serviceNameList;
public SecurityAwareList(List<E> valueList, Set<String> serviceNameList) {