Subversion Repositories general

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package ak.hostadmiral.core.model;

import java.util.Collection;
import ak.hostadmiral.util.ModelException;

public interface MailAliasDeletedListener
{
        /**
         * called if some mail alias is just deleted.
         *
         * @param editor     who is doing the operation
         * @param mailAlias  the mail alias deleted
         * @throws ModelException in case of any *fatal* errors,
         *         Note: throw it on fatal errors only, because database transaction
         *         will be rolled back but any other MailAliasDeletedListeners might be already called
         *         and (possible) they will not restore their original state.
         */
        public void mailAliasDeleted(User editor, MailAlias mailAlias)
                throws ModelException;
}