aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/service
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/java/sip/communicator/service')
-rw-r--r--src/net/java/sip/communicator/service/protocol/jabber/JabberChatRoomMember.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/net/java/sip/communicator/service/protocol/jabber/JabberChatRoomMember.java b/src/net/java/sip/communicator/service/protocol/jabber/JabberChatRoomMember.java
new file mode 100644
index 0000000..279ae3e
--- /dev/null
+++ b/src/net/java/sip/communicator/service/protocol/jabber/JabberChatRoomMember.java
@@ -0,0 +1,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();
+}