/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * Copyright (c) 2009 by Red Hat Inc and/or its affiliates or by
 * third-party contributors as indicated by either @author tags or express
 * copyright attribution statements applied by the authors.  All
 * third-party contributions are distributed under license by Red Hat Inc.
 *
 * This copyrighted material is made available to anyone wishing to use, modify,
 * copy, or redistribute it subject to the terms and conditions of the GNU
 * Lesser General Public License, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
 * for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this distribution; if not, write to:
 * Free Software Foundation, Inc.
 * 51 Franklin Street, Fifth Floor
 * Boston, MA  02110-1301  USA
 */
package org.hibernate.engine.jdbc;

import java.lang.reflect.Proxy;
import java.sql.Clob;
import java.sql.NClob;

Manages aspects of proxying java.sql.NClobs to add serializability.
Author:Steve Ebersole
/** * Manages aspects of proxying java.sql.NClobs to add serializability. * * @author Steve Ebersole */
public class SerializableNClobProxy extends SerializableClobProxy { private static final Class[] PROXY_INTERFACES = new Class[] { NClob.class, WrappedNClob.class };
Deprecated.
Params:
  • clob – The possible NClob reference
Returns:true if the the Clob is a NClob as well
Deprecated:ORM baselines on JDK 1.6, so optional support for NClob (JDK 1,6 addition) is no longer needed.
/** * Deprecated. * * @param clob The possible NClob reference * * @return {@code true} if the the Clob is a NClob as well * * @deprecated ORM baselines on JDK 1.6, so optional support for NClob (JDK 1,6 addition) is no longer needed. */
@Deprecated public static boolean isNClob(Clob clob) { return NClob.class.isInstance( clob ); }
Builds a serializable Clob wrapper around the given Clob.
Params:
  • clob – The Clob to be wrapped.
See Also:
/** * Builds a serializable {@link java.sql.Clob} wrapper around the given {@link java.sql.Clob}. * * @param clob The {@link java.sql.Clob} to be wrapped. * * @see #generateProxy(java.sql.Clob) */
protected SerializableNClobProxy(Clob clob) { super( clob ); }
Generates a SerializableNClobProxy proxy wrapping the provided NClob object.
Params:
  • nclob – The NClob to wrap.
Returns:The generated proxy.
/** * Generates a SerializableNClobProxy proxy wrapping the provided NClob object. * * @param nclob The NClob to wrap. * @return The generated proxy. */
public static NClob generateProxy(NClob nclob) { return (NClob) Proxy.newProxyInstance( getProxyClassLoader(), PROXY_INTERFACES, new SerializableNClobProxy( nclob ) ); }
Determines the appropriate class loader to which the generated proxy should be scoped.
Returns:The class loader appropriate for proxy construction.
/** * Determines the appropriate class loader to which the generated proxy * should be scoped. * * @return The class loader appropriate for proxy construction. */
public static ClassLoader getProxyClassLoader() { return SerializableClobProxy.getProxyClassLoader(); } }