blob: 279ae3e9444df1b7aec8a30c235ec82349178e54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package net.java.sip.communicator.service.protocol.jabber;
import net.java.sip.communicator.service.protocol.*;
/**
* {@link ChatRoomMember} interface extension that provides additional
* methods specific to Jabber protocol.
*
* @author Pawel Domas
*/
public interface JabberChatRoomMember
extends ChatRoomMember
{
/**
* Returns the Jabber ID of the member.
* @return the Jabber ID or <tt>null</tt> if we don't have enough
* permissions to look up user's JID.
*/
public String getJabberID();
}
|