01: package org.jbpm.instantiation; 02: 03: public abstract class UserCodeInterceptorConfig { 04: 05: public static UserCodeInterceptor userCodeInterceptor = null; 06: 07: public static void setUserCodeInterceptor( 08: UserCodeInterceptor interceptor) { 09: userCodeInterceptor = interceptor; 10: } 11: }