Package org.jivesoftware.openfire.vcard
Interface VCardListener
-
public interface VCardListener
Interface to listen for vCard changes. Use theVCardEventDispatcher.addListener(VCardListener)
method to register for events.- Author:
- Remko Tronçon
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
vCardCreated(String username, org.dom4j.Element vCard)
A vCard was created.void
vCardDeleted(String username, org.dom4j.Element vCard)
A vCard was deleted.void
vCardUpdated(String username, org.dom4j.Element vCard)
A vCard was updated.
-
-
-
Method Detail
-
vCardCreated
void vCardCreated(String username, org.dom4j.Element vCard)
A vCard was created.- Parameters:
username
- the username for which the vCard was created.vCard
- the vcard created.
-
vCardUpdated
void vCardUpdated(String username, org.dom4j.Element vCard)
A vCard was updated.- Parameters:
username
- the user for which the vCard was updated.vCard
- the vcard updated.
-
vCardDeleted
void vCardDeleted(String username, org.dom4j.Element vCard)
A vCard was deleted.- Parameters:
username
- the user for which the vCard was deleted.vCard
- the vcard deleted.
-
-