Package org.hibernate.bytecode.instrumentation.spi

Examples of org.hibernate.bytecode.instrumentation.spi.FieldInterceptor


          Set uninitializedFieldNames,
          SessionImplementor session) {
    if ( entity == null ) {
      return null;
    }
    FieldInterceptor interceptor = null;
    for ( Delegate delegate : INSTRUMENTATION_DELEGATES ) {
      interceptor = delegate.injectInterceptor( entity, entityName, uninitializedFieldNames, session );
      if ( interceptor != null ) {
        break;
      }
View Full Code Here


    }
    return interceptor;
  }

  public static void clearDirty(Object entity) {
    FieldInterceptor interceptor = extractFieldInterceptor( entity );
    if ( interceptor != null ) {
      interceptor.clearDirty();
    }
  }
View Full Code Here

      interceptor.clearDirty();
    }
  }

  public static void markDirty(Object entity) {
    FieldInterceptor interceptor = extractFieldInterceptor( entity );
    if ( interceptor != null ) {
      interceptor.dirty();
    }
  }
View Full Code Here

  private void markInterceptorDirty(final Object entity, final Object target, SessionFactoryImplementor factory) {
    InstrumentationService instrumentationService = factory
        .getServiceRegistry()
        .getService( InstrumentationService.class );
    if ( instrumentationService.isInstrumented( entity ) ) {
      FieldInterceptor interceptor = FieldInterceptionHelper.extractFieldInterceptor( target );
      if ( interceptor != null ) {
        interceptor.dirty();
      }
    }
  }
View Full Code Here

  private void markInterceptorDirty(Object entity, EntityPersister persister, EventSource source) {
    InstrumentationService instrumentationService = persister.getFactory()
        .getServiceRegistry()
        .getService( InstrumentationService.class );
    if ( instrumentationService.isInstrumented( entity ) ) {
      FieldInterceptor interceptor = FieldInterceptionHelper.injectFieldInterceptor(
          entity,
          persister.getEntityName(),
          null,
          source
      );
      interceptor.dirty();
    }
  }
View Full Code Here

//    }
//  }

  public void afterReassociate(Object entity, SessionImplementor session) {
    if ( getEntityMetamodel().getInstrumentationMetadata().isInstrumented() ) {
      FieldInterceptor interceptor = getEntityMetamodel().getInstrumentationMetadata().extractInterceptor( entity );
      if ( interceptor != null ) {
        interceptor.setSession( session );
      }
      else {
        FieldInterceptor fieldInterceptor = getEntityMetamodel().getInstrumentationMetadata().injectInterceptor(
            entity,
            getEntityName(),
            null,
            session
        );
        fieldInterceptor.dirty();
      }
    }

    handleNaturalIdReattachment( entity, session );
  }
View Full Code Here

      this.version = nextVersion;
      getPersister().setPropertyValue( entity, getPersister().getVersionProperty(), nextVersion );
    }

    if ( getPersister().getInstrumentationMetadata().isInstrumented() ) {
      final FieldInterceptor interceptor = getPersister().getInstrumentationMetadata().extractInterceptor( entity );
      if ( interceptor != null ) {
        interceptor.clearDirty();
      }
    }
    if( entity instanceof SelfDirtinessTracker)
      ((SelfDirtinessTracker) entity).$$_hibernate_clearDirtyAttributes();
View Full Code Here

//    }
//  }

  public void afterReassociate(Object entity, SessionImplementor session) {
    if ( getEntityMetamodel().getInstrumentationMetadata().isInstrumented() ) {
      FieldInterceptor interceptor = getEntityMetamodel().getInstrumentationMetadata().extractInterceptor( entity );
      if ( interceptor != null ) {
        interceptor.setSession( session );
      }
      else {
        FieldInterceptor fieldInterceptor = getEntityMetamodel().getInstrumentationMetadata().injectInterceptor(
            entity,
            getEntityName(),
            null,
            session
        );
        fieldInterceptor.dirty();
      }
    }

    handleNaturalIdReattachment( entity, session );
  }
View Full Code Here

    }
  }

  private void markInterceptorDirty(Object entity, EntityPersister persister, EventSource source) {
    if ( persister.getInstrumentationMetadata().isInstrumented() ) {
      FieldInterceptor interceptor = persister.getInstrumentationMetadata().injectInterceptor(
          entity,
          persister.getEntityName(),
          null,
          source
      );
      interceptor.dirty();
    }
  }
View Full Code Here

  }

  private void markInterceptorDirty(final Object entity, final Object target, EntityPersister persister) {
    if ( persister.getInstrumentationMetadata().isInstrumented() ) {
      FieldInterceptor interceptor = persister.getInstrumentationMetadata().extractInterceptor( target );
      if ( interceptor != null ) {
        interceptor.dirty();
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.hibernate.bytecode.instrumentation.spi.FieldInterceptor

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.