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