Subversion Repositories general

Rev

Rev 1014 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1014 dev 1
package ak.hostadmiral.core.model;
2
 
3
import ak.hostadmiral.util.ModelException;
4
 
5
public interface SystemUserDeletingListener
6
{
7
	/**
8
	 * called just before some system user is deleted.
9
	 *
10
	 * @param editor      who is doing the operation
11
	 * @param systemUser  the system user is being deleting
12
	 * @throws ModelException in case of any errors, no action should be done
13
	 *         until this moment in other classes
14
	 */
15
	public void systemUserDeleting(User editor, SystemUser systemUser)
16
		throws ModelException;
17
}