Subversion Repositories general

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

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