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 UserDeletingListener
{
        /**
         * called just before some user is deleted.
         *
         * @param editor  who is doing the operation
         * @param user    the user is being deleting
         * @throws ModelException in case of any errors, no action should be done
         *         until this moment in other classes
         */
        public void userDeleting(User editor, User user)
                throws ModelException;
}