com.discursive.dao.generic.LifecycleCallbacks Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of generic-dao Show documentation
Show all versions of generic-dao Show documentation
A generics DAO pattern/library
The newest version!
package com.discursive.dao.generic;
public interface LifecycleCallbacks {
public Integer getId();
public void setId(Integer id);
public void beforeSave();
public void beforeCreate();
public void beforeUpdate();
public void afterSave();
public void afterCreate();
public void afterUpdate();
public void beforeDestroy();
public void afterDestroy();
}