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.eclipse.emf.teneo.hibernate.EMFInterceptor.java

/**
 * Intercepts the getEntityName call to return the EClass name as the entity name.
 * 
 * @author <a href="mailto:mtaal@elver.org">Martin Taal</a>
 * @version $Revision: 1.15 $
 */

From source file org.fornax.cartridges.sculptor.framework.domain.AuditInterceptor.java

/**
 * This Hibernate interceptor will be invoked when objects are saved and it will
 * automatically update properties 'lastUpdated', 'lastUpdatedBy', 'createdDate'
 * and 'createdBy' for objects implementing
 * {@link org.fornax.cartridges.sculptor.framework.domain.Auditable}.
 * <p>

From source file org.fornax.cartridges.sculptor.framework.domain.JodaAuditInterceptor.java

/**
 * This Hibernate interceptor will be invoked when objects are saved and it will
 * automatically update properties 'lastUpdated', 'lastUpdatedBy', 'createdDate'
 * and 'createdBy' for objects implementing
 * {@link org.fornax.cartridges.sculptor.framework.domain.JodaAuditable}.
 * <p>

From source file org.geoserver.hibernate.HibPropertyChangeInterceptor.java

/**
 * Hibernate interceptor which forwards hibernate events to the catalog.
 * 
 * @author Justin Deoliveira, The Open Planning Project
 * 
 */

From source file org.helios.apmrouter.catalog.api.impl.DataServiceInterceptor.java

/**
 * <p>Title: DataServiceInterceptor</p>
 * <p>Description: Hibernate interceptor to print generated SQL</p> 
 * <p>Company: Helios Development Group LLC</p>
 * @author Whitehead (nwhitehead AT heliosdev DOT org)
 * <p><code>org.helios.apmrouter.catalog.api.impl.DataServiceInterceptor</code></p>

From source file org.helios.apmrouter.catalog.api.impl.ThreadLocalizedMultiplexedInterceptor.java

/**
 * <p>Title: ThreadLocalizedMultiplexedInterceptor</p>
 * <p>Description: </p> 
 * <p>Company: Helios Development Group LLC</p>
 * @author Whitehead (nwhitehead AT heliosdev DOT org)
 * <p><code>org.helios.apmrouter.catalog.api.impl.ThreadLocalizedMultiplexedInterceptor</code></p>

From source file org.hyperic.hibernate.HypericInterceptor.java

/**
 * This interceptor delegates to others in the chain.  Most of the meat
 * is in {@link HypericInterceptorTarget} 
 */
public class HypericInterceptor extends EmptyInterceptor {
    private final HibernateInterceptorChain _chainer = Bootstrap.getBean(HibernateInterceptorChain.class);

From source file org.hyperic.hibernate.HypericInterceptorTarget.java

/**
 * multi-purpose interceptor for injecting runtime logic,
 *
 * One use case is to set creation and modified time on
 * on save, merge or collection cascades
 */

From source file org.iternine.jeppetto.dao.hibernate.AccessControlInterceptor.java

public class AccessControlInterceptor extends EmptyInterceptor {

    //-------------------------------------------------------------
    // Variables - Private
    //-------------------------------------------------------------

From source file org.jasig.ssp.dao.AuditableEntityInterceptor.java

/**
 * Intercepts Hibernate writes to automatically fill the created and modified
 * author and time stamp fields of any model that derives from the
 * {@link org.jasig.ssp.model.AbstractAuditable} class.
 */
@Service