Uses of Interface
org.apache.openjpa.kernel.Extent
-
Packages that use Extent Package Description org.apache.openjpa.kernel OpenJPA Runtime Kernelorg.apache.openjpa.persistence OpenJPA JPA -
-
Uses of Extent in org.apache.openjpa.kernel
Classes in org.apache.openjpa.kernel that implement Extent Modifier and Type Class Description class
DelegatingExtent<T>
Delegating extent that also can perform exception translation for use in facades.class
ExtentImpl<T>
Representation of all members of a persistent class.Methods in org.apache.openjpa.kernel that return Extent Modifier and Type Method Description Extent
DelegatingQuery. getCandidateExtent()
Extent
Query. getCandidateExtent()
Return the candidate extent, ornull
if a collection was specified instead of an extent.Extent
QueryImpl. getCandidateExtent()
Extent<T>
DelegatingExtent. getDelegate()
Return the direct delegate.Extent<T>
DelegatingExtent. getInnermostDelegate()
Return the native delegate.Extent
Broker. newExtent(java.lang.Class cls, boolean subs)
Return an extent of the given class, optionally including subclasses.Extent
BrokerImpl. newExtent(java.lang.Class type, boolean subclasses)
Extent
DelegatingBroker. newExtent(java.lang.Class cls, boolean subs)
Methods in org.apache.openjpa.kernel with parameters of type Extent Modifier and Type Method Description void
Broker. evictAll(Extent extent, OpCallbacks call)
Evict all persistent-clean and persistent-nontransactional instances in the givenExtent
.void
BrokerImpl. evictAll(Extent extent, OpCallbacks call)
void
DelegatingBroker. evictAll(Extent extent, OpCallbacks call)
void
DelegatingQuery. setCandidateExtent(Extent extent)
void
Query. setCandidateExtent(Extent extent)
Set the candidate extent.void
QueryImpl. setCandidateExtent(Extent candidateExtent)
Constructors in org.apache.openjpa.kernel with parameters of type Extent Constructor Description DelegatingExtent(Extent<T> extent)
Constructor; supply delegate.DelegatingExtent(Extent<T> extent, RuntimeExceptionTranslator trans)
Constructor; supply delegate and exception translator. -
Uses of Extent in org.apache.openjpa.persistence
Methods in org.apache.openjpa.persistence that return Extent Modifier and Type Method Description Extent
Extent. getDelegate()
Deprecated.cast toExtentImpl
instead.Extent<T>
ExtentImpl. getDelegate()
Delegate.Constructors in org.apache.openjpa.persistence with parameters of type Extent Constructor Description ExtentImpl(EntityManagerImpl em, Extent<T> extent)
Constructor; supply delegate.
-