Commit f61c1ed1 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Initial version. JM-759

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@4282 b35dd754-fafc-0310-a699-88a17e54d16e
parent 1f920bdd
/**
* $RCSfile$
* $Revision$
* $Date: 2005-07-26 19:10:33 +0200 (Tue, 26 Jul 2005) $
*
* Copyright (C) 2004-2006 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.wildfire.vcard;
/**
* Interface to listen for vCard changes. Use the
* {@link org.jivesoftware.wildfire.vcard.VCardManager#addListener(VCardListener)}
* method to register for events.
*
* @author Remko Tronçon
*/
public interface VCardListener {
/**
* A vCard was created.
*
* @param user the user for which the vCard was created.
*/
public void vCardCreated(String user);
/**
* A vCard was updated.
*
* @param user the user for which the vCard was updated.
*/
public void vCardUpdated(String user);
/**
* A vCard was deleted.
*
* @param user the user for which the vCard was deleted.
*/
public void vCardDeleted(String user);
}
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