addInterceptor( new Interceptor( new BijectionInterceptor(), this ) );
}
addInterceptor( new Interceptor( new RollbackInterceptor(), this ) );
if ( getType()==JAVA_BEAN && beanClassHasAnnotation(Transactional.class))
{
addInterceptor( new Interceptor( new TransactionInterceptor(), this ) );
}
if ( getScope()==CONVERSATION )
{
addInterceptor( new Interceptor( new ManagedEntityIdentityInterceptor(), this ) );
}