| org.kuali.rice.ojb.ContextClassLoaderListProxy
ContextClassLoaderListProxy | public class ContextClassLoaderListProxy extends ListProxyDefaultImpl (Code) | | Sets up the context classloader properly for OJB proxies. The sequence of events in the super class is as
follows:
public synchronized Collection getData()
{
if (!isLoaded())
{
beforeLoading();
setData(loadData());
afterLoading();
}
return _data;
}
Therefore, since there is no try-catch-finally in conjunction with this call, we need to handle exceptions thrown
from loadData and unbind the classloader appropriately.
|
ContextClassLoaderListProxy | public ContextClassLoaderListProxy(PBKey aKey, Class aCollClass, Query aQuery)(Code) | | |
ContextClassLoaderListProxy | public ContextClassLoaderListProxy(PBKey aKey, Query aQuery)(Code) | | |
afterLoading | protected void afterLoading()(Code) | | |
beforeLoading | protected void beforeLoading()(Code) | | |
|
|