List of usage examples for org.hibernate EmptyInterceptor subclass-usage
From source file org.jspresso.framework.model.persistence.hibernate.EntityProxyInterceptor.java
/**
* This hibernate interceptor enables hibernate to handle entities which are
* implemented by proxies. Its main goal is to provide hibernate with new
* instances of entities based on their core interface contract.
*
* @author Vincent Vandenschrick
From source file org.kuali.continuity.dao.hibernate.HibernateInterceptor.java
/** * Intercepts flushdirty and save events. */ public class HibernateInterceptor extends EmptyInterceptor { /** *
From source file org.lexevs.dao.database.hibernate.prefix.PrefixInterceptor.java
/**
* Hibernate Interceptor used to modify the SQL query sent to the database.
* This interceptor changes the prefix, and also places some extra constraints
* on the query to ensure that critical queries always use DB table indexes.
*
* @author <a href="mailto:kevin.peterson@mayo.edu">Kevin Peterson</a>
From source file org.LexGrid.LexBIG.caCore.connection.orm.interceptors.EVSHibernateInterceptor.java
/**
* Hibernate Interceptor used to modify the SQL query sent to the database.
* This interceptor changes the prefix, and also places some extra constraints
* on the query to ensure that critical queries always use DB table indexes.
*
* @author <a href="mailto:kevin.peterson@mayo.edu">Kevin Peterson</a>
From source file org.mifos.framework.components.audit.util.helpers.AuditInterceptor.java
public class AuditInterceptor extends EmptyInterceptor { private AuditLog auditLog; private InterceptHelper interceptHelper; private UserContext userContext; private Boolean flag = false;
From source file org.olat.core.commons.persistence.AuditInterceptor.java
/** * @author Andreas Ch. Kapp */ public class AuditInterceptor extends EmptyInterceptor implements Interceptor, Serializable { private int updates;
From source file org.onecmdb.core.internal.storage.hibernate.DaoReaderInterceptor.java
public class DaoReaderInterceptor extends EmptyInterceptor { private IDaoReader reader; public void setDaoReader(IDaoReader reader) { this.reader = reader;
From source file org.onecmdb.core.internal.storage.hibernate.DaoSessionReaderInterceptor.java
public class DaoSessionReaderInterceptor extends EmptyInterceptor { //private IDaoReader2 reader; private ISession session; /*
From source file org.openbravo.client.kernel.event.PersistenceEventOBInterceptor.java
/**
* The interceptor which listens to persistence events and passes them on to observers.
*
* @author mtaal
*/
@ApplicationScoped
From source file org.openbravo.dal.core.OBInterceptor.java
/**
* This interceptor is used by Hibernate as a kind of save, update and delete event listener. This
* event listener catches save or update events to set the client and organization and the
* updated/created fields. In addition security checks are performed.
*
* @author mtaal