类 SerializableClobProxy
- java.lang.Object
-
- org.hibernate.engine.jdbc.SerializableClobProxy
-
- 所有已实现的接口:
Serializable,InvocationHandler
- 直接已知子类:
SerializableNClobProxy
public class SerializableClobProxy extends Object implements InvocationHandler, Serializable
Manages aspects of proxyingClobsto add serializability.- 作者:
- Gavin King, Steve Ebersole, Gail Badner
- 另请参阅:
- 序列化表格
-
-
构造器概要
构造器 限定符 构造器 说明 protectedSerializableClobProxy(Clob clob)
-
方法概要
所有方法 静态方法 实例方法 具体方法 修饰符和类型 方法 说明 static ClobgenerateProxy(Clob clob)Generates a SerializableClobProxy proxy wrapping the provided Clob object.static ClassLoadergetProxyClassLoader()Determines the appropriate class loader to which the generated proxy should be scoped.ClobgetWrappedClob()Access to the wrapped Clob referenceObjectinvoke(Object proxy, Method method, Object[] args)
-
-
-
构造器详细资料
-
SerializableClobProxy
protected SerializableClobProxy(Clob clob)
- 参数:
clob- TheClobto be wrapped.- 另请参阅:
generateProxy(java.sql.Clob)
-
-
方法详细资料
-
getWrappedClob
public Clob getWrappedClob()
Access to the wrapped Clob reference- 返回:
- The wrapped Clob reference
-
invoke
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable
- 指定者:
invoke在接口中InvocationHandler- 抛出:
Throwable
-
generateProxy
public static Clob generateProxy(Clob clob)
Generates a SerializableClobProxy proxy wrapping the provided Clob object.- 参数:
clob- The Clob to wrap.- 返回:
- The generated proxy.
-
getProxyClassLoader
public static ClassLoader getProxyClassLoader()
Determines the appropriate class loader to which the generated proxy should be scoped.- 返回:
- The class loader appropriate for proxy construction.
-
-