final SessionFactory<?> factory) throws EZBContainerException {
String itfClsName = itf.replace('/', '.');
try {
this.classLoader.loadClass(itfClsName);
} catch (ClassNotFoundException e) {
throw new EZBContainerException(
"Cannot find the class '" + itf + "' in Classloader '" + this.classLoader + "'.", e);
}
// Build a reference
LocalCallRef localCallRef = new LocalCallRef(itfClsName, embeddedId, containerID, factoryName, bean.isStateful());