Searched defs:primaryKeys (Results 1 - 4 of 4) sorted by relevance
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/ |
H A D | Container.java | 224 * @param primaryKeys the primaryKey or collection of primaryKeys 229 Object postFind(EjbInvocation inv, Object primaryKeys, Object[] findParams) argument
|
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/ |
H A D | ReadOnlyBeanContainer.java | 775 public Object postFind(EjbInvocation inv, Object primaryKeys, argument 781 Object returnValue = super.postFind(inv, primaryKeys, findParams); 798 if ( primaryKeys instanceof Enumeration ) { 799 Enumeration e = (Enumeration) primaryKeys; 806 } else if ( primaryKeys instanceof Collection ) { 807 Collection c = (Collection)primaryKeys; 816 if( primaryKeys != null ) { 817 updateRobInfoAfterFinder(primaryKeys);
|
H A D | EntityContainer.java | 872 public Object postFind(EjbInvocation inv, Object primaryKeys, argument 877 if ( primaryKeys instanceof Enumeration ) { 878 // create Enumeration of objrefs from Enumeration of primaryKeys 879 Enumeration e = (Enumeration)primaryKeys; 896 } else if ( primaryKeys instanceof Collection ) { 897 // create Collection of objrefs from Collection of primaryKeys 898 Collection c = (Collection)primaryKeys; 916 if( primaryKeys != null ) { 918 return getEJBLocalObjectForPrimaryKey(primaryKeys); 920 return getEJBObjectStub(primaryKeys, nul [all...] |
H A D | BaseContainer.java | 3956 public Object postFind(EjbInvocation inv, Object primaryKeys, argument
|
Completed in 26 milliseconds