public EntityNotFoundDelegate getEntityNotFoundDelegate() { return sessionFactoryImplementor.getEntityNotFoundDelegate(); }
@Override public SessionFactoryBuilder with(EntityNotFoundDelegate entityNotFoundDelegate) { this.options.entityNotFoundDelegate = entityNotFoundDelegate; return this; }
@Override public EntityNotFoundDelegate getEntityNotFoundDelegate() { return entityNotFoundDelegate; }
@Override public EntityNotFoundDelegate getEntityNotFoundDelegate() { return sessionFactoryOptions.getEntityNotFoundDelegate(); }
public EntityNotFoundDelegate getEntityNotFoundDelegate() { return entityNotFoundDelegate; }
/** * Retrieve the user-supplied delegate to handle non-existent entity * scenarios. May be null. * * @return The user-supplied delegate */ public EntityNotFoundDelegate getEntityNotFoundDelegate() { return entityNotFoundDelegate; }
/** * Specify a user-supplied delegate to be used to handle scenarios where an entity could not be * located by specified id. This is mainly intended for EJB3 implementations to be able to * control how proxy initialization errors should be handled... * * @param entityNotFoundDelegate The delegate to use */ public void setEntityNotFoundDelegate(EntityNotFoundDelegate entityNotFoundDelegate) { this.entityNotFoundDelegate = entityNotFoundDelegate; }
/** * Get the delegate for handling entity-not-found exception conditions. * * @return The specific EntityNotFoundDelegate to use, May be {@code null} */ public EntityNotFoundDelegate getEntityNotFoundDelegate();
public SessionFactoryBuilder with(EntityNotFoundDelegate entityNotFoundDelegate);
public EntityNotFoundDelegate getEntityNotFoundDelegate();