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 UserDeletingListener
6
{
7
	/**
8
	 * called just before some user is deleted.
9
	 *
10
	 * @param editor  who is doing the operation
11
	 * @param user    the 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 userDeleting(User editor, User user)
16
		throws ModelException;
17
}