Commit 5922ec45 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Initial version. JM-1046

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8141 b35dd754-fafc-0310-a699-88a17e54d16e
parent 5917cd5b
/**
* $RCSfile$
* $Revision: $
* $Date: $
*
* Copyright (C) 2004-2007 Jive Software. All rights reserved.
*
* This software is published under the terms of the GNU Public License (GPL),
* a copy of which is included in this distribution.
*/
package org.jivesoftware.openfire.privacy;
/**
/**
* Interface to listen for privacy list events. Use the
* {@link PrivacyListManager#addListener(PrivacyListEventListener)}
* method to register for events.
*
*/
public interface PrivacyListEventListener {
/**
* A privacy list was created.
*
* @param list the privacy list.
*/
public void privacyListCreated(PrivacyList list);
/**
* A privacy list is being deleted.
*
* @param listName name of the the privacy list that has been deleted.
*/
public void privacyListDeleting(String listName);
/**
* Properties of the privacy list were changed.
*
* @param list the privacy list.
*/
public void privacyListModified(PrivacyList list);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment