Subversion Repositories general

Rev

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

package ak.hostadmiral.core.model;

import ak.hostadmiral.util.ModelException;

public interface MailboxModifiedListener
{
        /**
         * called if some mailbox is just changed.
         *
         * @param editor     who is doing the operation
         * @param mailbox    the mailbox in its new state
         * @param oldMailbox copy of mailbox as it was before the operation
         * @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 MailboxCreatedListeners might be already called
         *         and (possible) they will not restore their original state.
         */
        public void mailboxModified(User editor, Mailbox mailbox, Mailbox oldMailbox)
                throws ModelException;
}