Uses of Interface
org.apache.openjpa.kernel.FindCallbacks
-
Packages that use FindCallbacks Package Description org.apache.openjpa.kernel OpenJPA Runtime Kernelorg.apache.openjpa.persistence OpenJPA JPAorg.apache.openjpa.slice Extended OpenJPA Interfaces for distributed databases. -
-
Uses of FindCallbacks in org.apache.openjpa.kernel
Classes in org.apache.openjpa.kernel that implement FindCallbacks Modifier and Type Class Description class
BrokerImpl
ConcreteBroker
.class
FinalizingBrokerImpl
Subtype ofBrokerImpl
that automatically closes itself during finalization.Methods in org.apache.openjpa.kernel with parameters of type FindCallbacks Modifier and Type Method Description java.lang.Object
BrokerImpl. find(java.lang.Object oid, boolean validate, FindCallbacks call)
protected java.lang.Object
BrokerImpl. find(java.lang.Object oid, FetchConfiguration fetch, java.util.BitSet exclude, java.lang.Object edata, int flags, FindCallbacks call)
Internal finder.java.lang.Object
DelegatingBroker. find(java.lang.Object oid, boolean validate, FindCallbacks call)
java.lang.Object
StoreContext. find(java.lang.Object oid, boolean validate, FindCallbacks call)
Find the persistence object with the given oid.java.lang.Object[]
BrokerImpl. findAll(java.util.Collection oids, boolean validate, FindCallbacks call)
protected java.lang.Object[]
BrokerImpl. findAll(java.util.Collection oids, FetchConfiguration fetch, java.util.BitSet exclude, java.lang.Object edata, int flags, FindCallbacks call)
Internal finder.java.lang.Object[]
DelegatingBroker. findAll(java.util.Collection oids, boolean validate, FindCallbacks call)
java.lang.Object[]
StoreContext. findAll(java.util.Collection<java.lang.Object> oids, boolean validate, FindCallbacks call)
Return the objects with the given oids.java.lang.Object
BrokerImpl. findCached(java.lang.Object oid, FindCallbacks call)
java.lang.Object
DelegatingBroker. findCached(java.lang.Object oid, FindCallbacks call)
java.lang.Object
StoreContext. findCached(java.lang.Object oid, FindCallbacks call)
Return the instance for the given oid/object , or null if not found in the L1 cache. -
Uses of FindCallbacks in org.apache.openjpa.persistence
Classes in org.apache.openjpa.persistence that implement FindCallbacks Modifier and Type Class Description class
EntityManagerImpl
Implementation ofEntityManager
interface. -
Uses of FindCallbacks in org.apache.openjpa.slice
Classes in org.apache.openjpa.slice that implement FindCallbacks Modifier and Type Class Description class
DistributedBrokerImpl
A specialized Broker to associate slice identifiers with the StateManagers as they are persisted in a cascade.
-