04-03-2011 10:08 AM
04-04-2011 04:20 AM
public void execute(DelegateExecution execution) throws Exception {
ClassLoader classLoaderBefore = Thread.currentThread().getContextClassLoader();
try {
// set the classloader which loaded the delegate as context classloader for the call to the client-code
Thread.currentThread().setContextClassLoader(javaDelegate.getClass().getClassLoader());
javaDelegate.execute(execution);
}finally {
Thread.currentThread().setContextClassLoader(classLoaderBefore);
}
}
04-05-2011 03:53 AM
04-05-2011 04:07 AM
04-05-2011 04:52 AM
04-05-2011 06:07 AM
04-05-2011 08:04 AM
04-08-2011 03:46 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.