You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Constructs a new wrapper for the given pooled object.
38
40
*
39
-
* @param pooledObject The object to wrap
40
-
* @param usageTracking The instance, if any (usually the object pool) to
41
-
* be provided with usage tracking information for this
42
-
* wrapped object
41
+
* @param pooledObject The object to wrap
42
+
* @param usageTracking The instance, if any (usually the object pool) to
43
+
* be provided with usage tracking information for this
44
+
* wrapped object
45
+
* @param unwrapInvocationTargetException True to make the proxy throw {@link InvocationTargetException#getTargetException()} instead of {@link InvocationTargetException}
@@ -36,13 +37,14 @@ final class CglibProxyHandler<T> extends BaseProxyHandler<T>
36
37
/**
37
38
* Constructs a CGLib proxy instance.
38
39
*
39
-
* @param pooledObject The object to wrap
40
-
* @param usageTracking The instance, if any (usually the object pool) to
41
-
* be provided with usage tracking information for this
42
-
* wrapped object
40
+
* @param pooledObject The object to wrap
41
+
* @param usageTracking The instance, if any (usually the object pool) to
42
+
* be provided with usage tracking information for this
43
+
* wrapped object
44
+
* @param unwrapInvocationTargetException True to make the proxy throw {@link InvocationTargetException#getTargetException()} instead of {@link InvocationTargetException}
* Constructs a new proxy source for the given class.
39
+
*
40
+
* @param superclass The class to proxy
41
+
* @param unwrapInvocationTargetException True to make the proxy throw {@link InvocationTargetException#getTargetException()} instead of {@link InvocationTargetException}
@@ -34,13 +35,14 @@ final class JdkProxyHandler<T> extends BaseProxyHandler<T>
34
35
/**
35
36
* Constructs a Java reflection proxy instance.
36
37
*
37
-
* @param pooledObject The object to wrap
38
-
* @param usageTracking The instance, if any (usually the object pool) to
39
-
* be provided with usage tracking information for this
40
-
* wrapped object
38
+
* @param pooledObject The object to wrap
39
+
* @param usageTracking The instance, if any (usually the object pool) to
40
+
* be provided with usage tracking information for this
41
+
* wrapped object
42
+
* @param unwrapInvocationTargetException True to make the proxy throw {@link InvocationTargetException#getTargetException()} instead of {@link InvocationTargetException}
* Constructs a new proxy source for the given interfaces.
38
40
*
39
41
* @param classLoader The class loader with which to create the proxy
40
42
* @param interfaces The interfaces to proxy
43
+
* @param unwrapInvocationTargetException True to make the proxy throw {@link InvocationTargetException#getTargetException()} instead of {@link InvocationTargetException}
0 commit comments