Package org.hibernate

Examples of org.hibernate.Interceptor.onDelete()


    @Override
    public void onDelete(Object entity, Serializable id, Object[] state,
                                    String[] propertyNames, Type[] types) {
        for (Iterator iterator = _interceptors.iterator(); iterator.hasNext();) {
            Interceptor interceptor = (Interceptor) iterator.next();
            interceptor.onDelete(entity, id, state, propertyNames, types);
        }
    }
   
    /*
     * @see org.hibernate.EmptyInterceptor#findDirty(java.lang.Object, java.io.Serializable, java.lang.Object[], java.lang.Object[], java.lang.String[], org.hibernate.type.Type[])
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.