FileDocCategorySizeDatePackage
FieldInterceptor.javaAPI DocHibernate 3.2.51126Fri Feb 03 15:15:20 GMT 2006org.hibernate.intercept

FieldInterceptor

public interface FieldInterceptor
Contract for field interception handlers.
author
Steve Ebersole

Fields Summary
Constructors Summary
Methods Summary
public voidclearDirty()
Clear the internal dirty flag.

public voiddirty()
Forcefully mark the entity as being dirty.

public booleanisDirty()
Is the entity considered dirty?

return
True if the entity is dirty; otherwise false.

public booleanisInitialized()
Is the entity to which we are bound completely initialized?

return
True if the entity is initialized; otherwise false.

public booleanisInitialized(java.lang.String field)
The the given field initialized for the entity to which we are bound?

param
field The name of the field to check
return
True if the given field is initialized; otherwise false.

public voidsetSession(org.hibernate.engine.SessionImplementor session)
Use to associate the entity to which we are bound to the given session.

param
session The session to which we are now associated.