Class CglibProxySource<T>

  • Type Parameters:
    T - type of the pooled object to be proxied
    All Implemented Interfaces:
    ProxySource<T>

    public class CglibProxySource<T>
    extends java.lang.Object
    implements ProxySource<T>
    Provides proxy objects using CGLib.
    Since:
    2.0
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.Class<? extends T> superclass  
    • Constructor Summary

      Constructors 
      Constructor Description
      CglibProxySource​(java.lang.Class<? extends T> superclass)
      Create a new proxy source for the given class.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      T createProxy​(T pooledObject, UsageTracking<T> usageTracking)
      Create a new proxy object, wrapping the given pooled object.
      T resolveProxy​(T proxy)
      Obtain the wrapped object from the given proxy.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • superclass

        private final java.lang.Class<? extends T> superclass
    • Constructor Detail

      • CglibProxySource

        public CglibProxySource​(java.lang.Class<? extends T> superclass)
        Create a new proxy source for the given class.
        Parameters:
        superclass - The class to proxy
    • Method Detail

      • createProxy

        public T createProxy​(T pooledObject,
                             UsageTracking<T> usageTracking)
        Description copied from interface: ProxySource
        Create a new proxy object, wrapping the given pooled object.
        Specified by:
        createProxy in interface ProxySource<T>
        Parameters:
        pooledObject - The object to wrap
        usageTracking - The instance, if any (usually the object pool) to be provided with usage tracking information for this wrapped object
        Returns:
        the new proxy object
      • resolveProxy

        public T resolveProxy​(T proxy)
        Description copied from interface: ProxySource
        Obtain the wrapped object from the given proxy.
        Specified by:
        resolveProxy in interface ProxySource<T>
        Parameters:
        proxy - The proxy object
        Returns:
        The pooled objetc wrapped by the given proxy