dblevins 2004/12/16 00:44:58
Modified: modules/core/src/java/org/openejb/proxy ProxyInfo.java
Log:
Added service-endpoint interface to builder and proxyinfo
Revision Changes Path
1.5 +5 -1
openejb/modules/core/src/java/org/openejb/proxy/ProxyInfo.java
Index: ProxyInfo.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb/modules/core/src/java/org/openejb/proxy/ProxyInfo.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ProxyInfo.java 16 Apr 2004 02:34:06 -0000 1.4
+++ ProxyInfo.java 16 Dec 2004 05:44:58 -0000 1.5
@@ -59,6 +59,7 @@
private final Class homeInterface;
private final Class localObjectInterface;
private final Class localHomeInterface;
+ private final Class serviceEndpointInterface;
private final Class primaryKeyClass;
@@ -69,6 +70,7 @@
this.remoteInterface = info.remoteInterface;
this.localHomeInterface = info.localHomeInterface;
this.localObjectInterface = info.localObjectInterface;
+ this.serviceEndpointInterface = info.serviceEndpointInterface;
this.primaryKeyClass = info.primaryKeyClass;
this.primaryKey = primaryKey;
}
@@ -80,6 +82,7 @@
Class remoteInterface,
Class localHomeInterface,
Class localObjectInterface,
+ Class serviceEndpointInterface,
Class primaryKeyClass) {
this.componentType = componentType;
@@ -88,6 +91,7 @@
this.remoteInterface = remoteInterface;
this.localHomeInterface = localHomeInterface;
this.localObjectInterface = localObjectInterface;
+ this.serviceEndpointInterface = serviceEndpointInterface;
this.primaryKeyClass = primaryKeyClass;
this.primaryKey = null;
}