Package org.hibernate.proxy

Examples of org.hibernate.proxy.HibernateProxy


    if ( value instanceof ElementWrapper ) {
      value = ( (ElementWrapper) value ).getElement();
    }

    if ( !Hibernate.isInitialized(value) ) {
      HibernateProxy proxy = (HibernateProxy) value;
      LazyInitializer li = proxy.getHibernateLazyInitializer();
      reassociateProxy(li, proxy);
      return true;
    }
    else {
      return false;
View Full Code Here


      value = ( (ElementWrapper) value ).getElement();
    }

    if ( value instanceof HibernateProxy ) {
      LOG.debugf( "Setting proxy identifier: %s", id );
      HibernateProxy proxy = (HibernateProxy) value;
      LazyInitializer li = proxy.getHibernateLazyInitializer();
      li.setIdentifier(id);
      reassociateProxy(li, proxy);
    }
  }
View Full Code Here

    if ( maybeProxy instanceof ElementWrapper ) {
      maybeProxy = ( (ElementWrapper) maybeProxy ).getElement();
    }

    if ( maybeProxy instanceof HibernateProxy ) {
      HibernateProxy proxy = (HibernateProxy) maybeProxy;
      LazyInitializer li = proxy.getHibernateLazyInitializer();
      if ( li.isUninitialized() ) {
        throw new PersistentObjectException(
            "object was an uninitialized proxy for " +
            li.getEntityName()
        );
View Full Code Here

    if ( maybeProxy instanceof ElementWrapper ) {
      maybeProxy = ( (ElementWrapper) maybeProxy ).getElement();
    }

    if ( maybeProxy instanceof HibernateProxy ) {
      HibernateProxy proxy = (HibernateProxy) maybeProxy;
      LazyInitializer li = proxy.getHibernateLazyInitializer();
      reassociateProxy(li, proxy);
      return li.getImplementation(); //initialize + unwrap the object
    }
    else {
      return maybeProxy;
View Full Code Here

    //    of the loop-in-loop especially considering this is far more likely the 'edge case'
    if ( mergeMap != null ) {
      for ( Object o : mergeMap.entrySet() ) {
        final Entry mergeMapEntry = (Entry) o;
        if ( mergeMapEntry.getKey() instanceof HibernateProxy ) {
          final HibernateProxy proxy = (HibernateProxy) mergeMapEntry.getKey();
          if ( persister.isSubclassEntityName( proxy.getHibernateLazyInitializer().getEntityName() ) ) {
            boolean found = isFoundInParent(
                propertyName,
                childEntity,
                persister,
                collectionPersister,
                mergeMap.get( proxy )
            );
            if ( !found ) {
              found = isFoundInParent(
                  propertyName,
                  mergeMap.get( childEntity ),
                  persister,
                  collectionPersister,
                  mergeMap.get( proxy )
              );
            }
            if ( found ) {
              return proxy.getHibernateLazyInitializer().getIdentifier();
            }
          }
        }
      }
    }
View Full Code Here

    }
    if ( isReadOnly( object ) == readOnly ) {
      return;
    }
    if ( object instanceof HibernateProxy ) {
      HibernateProxy proxy = ( HibernateProxy ) object;
      setProxyReadOnly( proxy, readOnly );
      if ( Hibernate.isInitialized( proxy ) ) {
        setEntityReadOnly(
            proxy.getHibernateLazyInitializer().getImplementation(),
            readOnly
        );
      }
    }
    else {
View Full Code Here

        if ( isEmbeddedInXML ) {
          throw new ClassCastException( value.getClass().getName() );
        }
        id = ( Serializable ) value;
      } else if ( value instanceof HibernateProxy ) {
        HibernateProxy proxy = ( HibernateProxy ) value;
        id = proxy.getHibernateLazyInitializer().getIdentifier();
      }
      else {
        id = persister.getIdentifier( value );
      }
     
View Full Code Here

          setIdentifierMethod,
          componentIdType,
          session
        );

      final HibernateProxy proxy;
      Class factory = getProxyFactory(persistentClass,  interfaces);
      proxy = getProxyInstance(factory, instance);
      instance.constructed = true;
      return proxy;
    }
View Full Code Here

        setIdentifierMethod,
        componentIdType,
        session
      );

    final HibernateProxy proxy;
    try {
      proxy = getProxyInstance(factory, instance);
    }
    catch (Exception e) {
      throw new HibernateException( "CGLIB Enhancement failed: " + persistentClass.getName(), e );
View Full Code Here

    return proxy;
  }

    private static HibernateProxy getProxyInstance(Class factory, CGLIBLazyInitializer instance) throws InstantiationException, IllegalAccessException {
    HibernateProxy proxy;
    try {
      Enhancer.registerCallbacks(factory, new Callback[]{ instance, null });
      proxy = (HibernateProxy)factory.newInstance();
    } finally {
      // HHH-2481 make sure the callback gets cleared, otherwise the instance stays in a static thread local.
View Full Code Here

TOP

Related Classes of org.hibernate.proxy.HibernateProxy

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.