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 DContainer.java224 * @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 DReadOnlyBeanContainer.java775 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 DEntityContainer.java872 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 DBaseContainer.java3956 public Object postFind(EjbInvocation inv, Object primaryKeys, argument

Completed in 26 milliseconds