{
addInterceptor( new Interceptor( new ValidationInterceptor(), this ) );
}
if ( getType()==JAVA_BEAN || beanClassHasAnnotation(Rollback.class) )
{
addInterceptor( new Interceptor( new RollbackInterceptor(), this ) );
}
if ( getType()==JAVA_BEAN && beanClassHasAnnotation(Transactional.class))
{
addInterceptor( new Interceptor( new TransactionInterceptor(), this ) );
}