Uses of Interface
org.apache.openjpa.util.Proxy
-
Packages that use Proxy Package Description org.apache.openjpa.jdbc.meta.strats OpenJPA-JDBC ORM Strategiesorg.apache.openjpa.util OpenJPA Utilitiesorg.apache.openjpa.util.proxy -
-
Uses of Proxy in org.apache.openjpa.jdbc.meta.strats
Classes in org.apache.openjpa.jdbc.meta.strats that implement Proxy Modifier and Type Class Description class
LRSProxyCollection
Large result set collection.Methods in org.apache.openjpa.jdbc.meta.strats that return Proxy Modifier and Type Method Description protected Proxy
HandlerCollectionTableFieldStrategy. newLRSProxy()
protected Proxy
RelationCollectionInverseKeyFieldStrategy. newLRSProxy()
protected Proxy
RelationCollectionTableFieldStrategy. newLRSProxy()
protected Proxy
RelationMapInverseKeyFieldStrategy. newLRSProxy()
protected Proxy
RelationMapTableFieldStrategy. newLRSProxy()
protected abstract Proxy
StoreCollectionFieldStrategy. newLRSProxy()
Return a large result set proxy for this field. -
Uses of Proxy in org.apache.openjpa.util
Subinterfaces of Proxy in org.apache.openjpa.util Modifier and Type Interface Description interface
LRSProxy
Marker interface for large result set proxies.Classes in org.apache.openjpa.util that implement Proxy Modifier and Type Class Description class
AbstractLRSProxyCollection
A collection proxy designed for collections backed by extremely large result sets in which each call toAbstractLRSProxyCollection.iterator()
may perform a database query.class
AbstractLRSProxyMap<K,V>
A map proxy designed for maps backed by extremely large result sets in which each call toAbstractLRSProxyMap.get(java.lang.Object)
orAbstractLRSProxyMap.containsKey(java.lang.Object)
may perform a database query.Methods in org.apache.openjpa.util that return Proxy Modifier and Type Method Description Proxy
ProxyManager. newCalendarProxy(java.lang.Class type, java.util.TimeZone timeZone)
Return a new calendar proxy.Proxy
ProxyManagerImpl. newCalendarProxy(java.lang.Class type, java.util.TimeZone zone)
Proxy
ProxyManager. newCollectionProxy(java.lang.Class type, java.lang.Class elementType, java.util.Comparator compare, boolean autoOff)
Return a proxy for the given collection type.Proxy
ProxyManagerImpl. newCollectionProxy(java.lang.Class type, java.lang.Class elementType, java.util.Comparator compare, boolean autoOff)
Proxy
ProxyManager. newCustomProxy(java.lang.Object obj, boolean autoOff)
Return a proxy for the given object, or null if this manager cannot proxy the object.Proxy
ProxyManagerImpl. newCustomProxy(java.lang.Object orig, boolean autoOff)
Proxy
ProxyManager. newDateProxy(java.lang.Class type)
Return a new date proxy.Proxy
ProxyManagerImpl. newDateProxy(java.lang.Class type)
Proxy
ProxyManager. newMapProxy(java.lang.Class type, java.lang.Class keyType, java.lang.Class valueType, java.util.Comparator compare, boolean autoOff)
Return a proxy for the given map type.Proxy
ProxyManagerImpl. newMapProxy(java.lang.Class type, java.lang.Class keyType, java.lang.Class elementType, java.util.Comparator compare, boolean autoOff)
Methods in org.apache.openjpa.util with parameters of type Proxy Modifier and Type Method Description static void
Proxies. dirty(Proxy proxy, boolean stopTracking)
Used by proxy types to dirty their owner.static boolean
Proxies. isOwner(Proxy proxy, OpenJPAStateManager sm, int field)
Used by proxy types to check if the given owners and field names are equivalent.static void
Proxies. removed(Proxy proxy, java.lang.Object removed, boolean key)
Used by proxy types to notify collection owner on element removal.static java.lang.Object
Proxies. writeReplace(Proxy proxy, boolean detachable)
Used by proxy types to serialize non-proxy versions. -
Uses of Proxy in org.apache.openjpa.util.proxy
Subinterfaces of Proxy in org.apache.openjpa.util.proxy Modifier and Type Interface Description interface
ProxyBean
Interface implemented by all generated custom types, which use JavaBean conventions for copying state.interface
ProxyCalendar
Interface implemented by all generated proxies onCalendar
types.interface
ProxyCollection
Interface implemented by all proxy collection types.interface
ProxyDate
Interface implemented by all generated proxies onDate
types.interface
ProxyMap
Interface implemented by proxies onMap
types.Classes in org.apache.openjpa.util.proxy that implement Proxy Modifier and Type Class Description class
DelayedArrayListProxy
ArrayList proxy with delay loading capability.class
DelayedHashSetProxy
HashSet proxy with delay loading capability.class
DelayedLinkedHashSetProxy
LinkedHashSet proxy with delay loading capability.class
DelayedLinkedListProxy
LinkedList proxy with delay loading capability.class
DelayedPriorityQueueProxy
PriorityQueue proxy with delay loading capability.class
DelayedTreeSetProxy
TreeSet proxy with delay loading capability.class
DelayedVectorProxy
Vector proxy with delay loading capability.
-