[jboss-cvs] JBossAS SVN: r64311 - branches/Branch_4_2/ejb3/src/main/org/jboss/ejb3.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Thu Jul 26 11:50:30 EDT 2007
Author: bdecoste
Date: 2007-07-26 11:50:30 -0400 (Thu, 26 Jul 2007)
New Revision: 64311
Modified:
branches/Branch_4_2/ejb3/src/main/org/jboss/ejb3/Ejb3Registry.java
Log:
[EJBTHREE-1019] guid and oid use for Ejb3Registry. Tests are passing, but I still need to rework this. Not happy with the current implementation.
Modified: branches/Branch_4_2/ejb3/src/main/org/jboss/ejb3/Ejb3Registry.java
===================================================================
--- branches/Branch_4_2/ejb3/src/main/org/jboss/ejb3/Ejb3Registry.java 2007-07-26 15:49:16 UTC (rev 64310)
+++ branches/Branch_4_2/ejb3/src/main/org/jboss/ejb3/Ejb3Registry.java 2007-07-26 15:50:30 UTC (rev 64311)
@@ -66,6 +66,11 @@
return containers.containsKey(guid);
}
+ public static boolean hasClusterContainer(String oid)
+ {
+ return clusterContainers.containsKey(oid);
+ }
+
public static final String guid(Container container)
{
return container.getObjectName().getCanonicalName() + ",VMID=" + VMID;
More information about the jboss-cvs-commits
mailing list