Example usage for org.hibernate EmptyInterceptor subclass-usage

List of usage examples for org.hibernate EmptyInterceptor subclass-usage

Introduction

In this page you can find the example usage for org.hibernate EmptyInterceptor subclass-usage.

Usage

From source file org.openmrs.module.sync.api.db.hibernate.HibernateSyncInterceptor.java

/**
 * Implements 'change interception' for data synchronization feature using Hibernate interceptor
 * mechanism. Intercepted changes are recorded into the synchronization journal table in DB.
 * @see org.hibernate.EmptyInterceptor
 */
public class HibernateSyncInterceptor extends EmptyInterceptor implements ApplicationContextAware, Serializable {

From source file org.openremote.container.persistence.PersistenceEventInterceptor.java

/**
 * Intercept Hibernate lifecycle events and publish a message.
 */
public class PersistenceEventInterceptor extends EmptyInterceptor {

    private static final Logger LOG = Logger.getLogger(PersistenceEventInterceptor.class.getName());

From source file org.opentides.persistence.interceptor.AuditLogInterceptor.java

/**
 * This is the interceptor responsible in tracking audit trails.
 * Source is patterned after the book "Java Persistence with Hibernate" - page 546 onwards
 * and merged with http://www.hibernate.org/318.html
 * 
 * @author allantan

From source file org.osaf.cosmo.hibernate.CompoundInterceptor.java

/**
 * Hibernate Interceptor supports invoking multiple Interceptors
 */
public class CompoundInterceptor extends EmptyInterceptor {

    private List<Interceptor> interceptors;

From source file org.osaf.cosmo.model.hibernate.AuditableObjectInterceptor.java

/**
 * Hibernate Interceptor that updates creationDate, modifiedDate,
 * and etag each time an AuditableObject is saved/updated.
 */
public class AuditableObjectInterceptor extends EmptyInterceptor {

From source file org.osaf.cosmo.model.hibernate.EventStampInterceptor.java

/**
 * Hibernate Interceptor that updates BaseEventStamp timeRangeIndexes.
 */
public class EventStampInterceptor extends EmptyInterceptor {

    @Override

From source file org.ow2.bonita.env.interceptor.DescNullFirstInterceptor.java

public abstract class DescNullFirstInterceptor extends EmptyInterceptor {

    private static final long serialVersionUID = -7671847499846010891L;
    final static String ORDER_BY = "order by";

    public String onPrepareStatement(String sql) {

From source file org.paxle.data.db.impl.InterfaceInterceptor.java

public class InterfaceInterceptor extends EmptyInterceptor {
    private static final long serialVersionUID = 1L;

    /**
     * For logging
     */

From source file org.remus.marketplace.indexing.NodeIndexListener.java

/**
 * @author Tom Seidel <tom.seidel@remus-software.org>
 */
public class NodeIndexListener extends EmptyInterceptor {

    private IndexService indexService;

From source file org.riotfamily.common.hibernate.EntityListenerInterceptor.java

/**
 * Hibernate {@link Interceptor} that scans the ApplicationContext for beans
 * implementing the {@link EntityListener} interface and invokes the appropriate 
 * callbacks.
 * 
 * @author Felix Gnass [fgnass at neteye dot de]