1 package org.hibernate.action; 3 4 import org.hibernate.HibernateException; 5 6 import java.io.Serializable ; 7 8 15 public interface Executable { 16 19 public void beforeExecutions() throws HibernateException; 20 23 public void execute() throws HibernateException; 24 30 public boolean hasAfterTransactionCompletion(); 31 34 public void afterTransactionCompletion(boolean success) throws HibernateException; 35 38 public Serializable [] getPropertySpaces(); 39 } 40 | Popular Tags |