Java 类org.hibernate.proxy.EntityNotFoundDelegate 实例源码

项目:lemon    文件:SessionFactoryWrapper.java   
public EntityNotFoundDelegate getEntityNotFoundDelegate() {
    return sessionFactoryImplementor.getEntityNotFoundDelegate();
}
项目:lams    文件:SessionFactoryBuilderImpl.java   
@Override
public SessionFactoryBuilder with(EntityNotFoundDelegate entityNotFoundDelegate) {
    this.options.entityNotFoundDelegate = entityNotFoundDelegate;
    return this;
}
项目:lams    文件:SessionFactoryBuilderImpl.java   
@Override
public EntityNotFoundDelegate getEntityNotFoundDelegate() {
    return entityNotFoundDelegate;
}
项目:lams    文件:SessionFactoryImpl.java   
@Override
public EntityNotFoundDelegate getEntityNotFoundDelegate() {
    return sessionFactoryOptions.getEntityNotFoundDelegate();
}
项目:cacheonix-core    文件:SessionFactoryImpl.java   
public EntityNotFoundDelegate getEntityNotFoundDelegate() {
    return entityNotFoundDelegate;
}
项目:hibernate-dynamic-dialects    文件:SessionFactoryImpl.java   
@Override
public EntityNotFoundDelegate getEntityNotFoundDelegate() {
    return sessionFactoryOptions.getEntityNotFoundDelegate();
}
项目:lams    文件:Configuration.java   
/**
 * Retrieve the user-supplied delegate to handle non-existent entity
 * scenarios.  May be null.
 *
 * @return The user-supplied delegate
 */
public EntityNotFoundDelegate getEntityNotFoundDelegate() {
    return entityNotFoundDelegate;
}
项目:lams    文件:Configuration.java   
/**
 * 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;
}
项目:lams    文件:SessionFactory.java   
/**
 * Get the delegate for handling entity-not-found exception conditions.
 *
 * @return The specific EntityNotFoundDelegate to use,  May be {@code null}
 */
public EntityNotFoundDelegate getEntityNotFoundDelegate();
项目:cacheonix-core    文件:Configuration.java   
/**
 * Retrieve the user-supplied delegate to handle non-existent entity
 * scenarios.  May be null.
 *
 * @return The user-supplied delegate
 */
public EntityNotFoundDelegate getEntityNotFoundDelegate() {
    return entityNotFoundDelegate;
}
项目:cacheonix-core    文件:Configuration.java   
/**
 * 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;
}
项目:lams    文件:SessionFactoryBuilder.java   
public SessionFactoryBuilder with(EntityNotFoundDelegate entityNotFoundDelegate);
项目:lams    文件:SessionFactoryImplementor.java   
public EntityNotFoundDelegate getEntityNotFoundDelegate();
项目:cacheonix-core    文件:SessionFactoryImplementor.java   
public EntityNotFoundDelegate getEntityNotFoundDelegate();