dain 2006/02/01 06:50:04
Modified: modules/core/src/java/org/openejb/corba/proxy
CORBAProxyReference.java
Log:
Major refactor
Split container into an object to represent a deployed ejb and a set of
shared containers which process invocations
Introduced interface between CMP container and CMP engine
Revision Changes Path
1.5 +4 -6
openejb/modules/core/src/java/org/openejb/corba/proxy/CORBAProxyReference.java
Index: CORBAProxyReference.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb/modules/core/src/java/org/openejb/corba/proxy/CORBAProxyReference.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- CORBAProxyReference.java 18 Mar 2005 01:32:40 -0000 1.4
+++ CORBAProxyReference.java 1 Feb 2006 11:50:04 -0000 1.5
@@ -56,12 +56,10 @@
import org.apache.geronimo.kernel.Kernel;
import org.apache.geronimo.naming.reference.SimpleAwareReference;
-
/**
* @version $Revision$ $Date$
*/
public final class CORBAProxyReference extends SimpleAwareReference {
-
private final static Log log =
LogFactory.getLog(CORBAProxyReference.class);
private final URI nsCorbaloc;
@@ -69,13 +67,13 @@
private final ObjectName containerName;
private final String home;
- public CORBAProxyReference(URI corbaURL, String objectName, ObjectName
containerName, String home) {
- this.nsCorbaloc = corbaURL;
+ public CORBAProxyReference(URI corbaUri, String objectName, ObjectName
containerName, String home) {
+ this.nsCorbaloc = corbaUri;
this.objectName = objectName;
this.containerName = containerName;
this.home = home;
- if (log.isDebugEnabled()) log.debug("<init> " + corbaURL.toString()
+ ", " + objectName + ", " + containerName + ", " + home);
+ if (log.isDebugEnabled()) log.debug("<init> " + corbaUri.toString()
+ ", " + objectName + ", " + containerName + ", " + home);
}
public String getClassName() {