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 classLRSProxyCollectionLarge result set collection.Methods in org.apache.openjpa.jdbc.meta.strats that return Proxy Modifier and Type Method Description protected ProxyHandlerCollectionTableFieldStrategy. newLRSProxy()protected ProxyRelationCollectionInverseKeyFieldStrategy. newLRSProxy()protected ProxyRelationCollectionTableFieldStrategy. newLRSProxy()protected ProxyRelationMapInverseKeyFieldStrategy. newLRSProxy()protected ProxyRelationMapTableFieldStrategy. newLRSProxy()protected abstract ProxyStoreCollectionFieldStrategy. 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 interfaceLRSProxyMarker interface for large result set proxies.Classes in org.apache.openjpa.util that implement Proxy Modifier and Type Class Description classAbstractLRSProxyCollectionA collection proxy designed for collections backed by extremely large result sets in which each call toAbstractLRSProxyCollection.iterator()may perform a database query.classAbstractLRSProxyMap<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 ProxyProxyManager. newCalendarProxy(java.lang.Class type, java.util.TimeZone timeZone)Return a new calendar proxy.ProxyProxyManagerImpl. newCalendarProxy(java.lang.Class type, java.util.TimeZone zone)ProxyProxyManager. newCollectionProxy(java.lang.Class type, java.lang.Class elementType, java.util.Comparator compare, boolean autoOff)Return a proxy for the given collection type.ProxyProxyManagerImpl. newCollectionProxy(java.lang.Class type, java.lang.Class elementType, java.util.Comparator compare, boolean autoOff)ProxyProxyManager. newCustomProxy(java.lang.Object obj, boolean autoOff)Return a proxy for the given object, or null if this manager cannot proxy the object.ProxyProxyManagerImpl. newCustomProxy(java.lang.Object orig, boolean autoOff)ProxyProxyManager. newDateProxy(java.lang.Class type)Return a new date proxy.ProxyProxyManagerImpl. newDateProxy(java.lang.Class type)ProxyProxyManager. 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.ProxyProxyManagerImpl. 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 voidProxies. dirty(Proxy proxy, boolean stopTracking)Used by proxy types to dirty their owner.static booleanProxies. isOwner(Proxy proxy, OpenJPAStateManager sm, int field)Used by proxy types to check if the given owners and field names are equivalent.static voidProxies. removed(Proxy proxy, java.lang.Object removed, boolean key)Used by proxy types to notify collection owner on element removal.static java.lang.ObjectProxies. 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 interfaceProxyBeanInterface implemented by all generated custom types, which use JavaBean conventions for copying state.interfaceProxyCalendarInterface implemented by all generated proxies onCalendartypes.interfaceProxyCollectionInterface implemented by all proxy collection types.interfaceProxyDateInterface implemented by all generated proxies onDatetypes.interfaceProxyMapInterface implemented by proxies onMaptypes.Classes in org.apache.openjpa.util.proxy that implement Proxy Modifier and Type Class Description classDelayedArrayListProxyArrayList proxy with delay loading capability.classDelayedHashSetProxyHashSet proxy with delay loading capability.classDelayedLinkedHashSetProxyLinkedHashSet proxy with delay loading capability.classDelayedLinkedListProxyLinkedList proxy with delay loading capability.classDelayedPriorityQueueProxyPriorityQueue proxy with delay loading capability.classDelayedTreeSetProxyTreeSet proxy with delay loading capability.classDelayedVectorProxyVector proxy with delay loading capability.
-