Subversion Repositories general

Rev

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

package ak.hostadmiral.core.model;

import ak.hostadmiral.util.ModelException;

public interface MailAliasDeletingListener
{
        /**
         * called just before some mail alias is deleted.
         *
         * @param editor     who is doing the operation
         * @param mailAlias  the mail alias is being deleting
         * @throws ModelException in case of any errors, no action should be done
         *         until this moment in other classes
         */
        public void mailAliasDeleting(User editor, MailAlias mailAlias)
                throws ModelException;
}