blob: 72e2dee45decab1c04933c49bae88d58987460f9 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
/*
* SIP Communicator, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package net.java.sip.communicator.impl.protocol.jabber;
import net.java.sip.communicator.service.protocol.*;
/**
* A Jabber implementation of the chat room member.
*
* @author Emil Ivov
*/
public class ChatRoomMemberJabberImpl
implements ChatRoomMember
{
/**
* The chat room that we are a member of.
*/
private ChatRoomJabberImpl containingRoom = null;
/**
* The role that this member has in its member room.
*/
private ChatRoomMemberRole role = null;
/**
* The jabber id of the member (will only be visible to members with
* necessary permissions)
*/
private String jabberID = null;
/**
* The nick name that this member is using inside its containing chat room.
*/
private String nickName = null;
/**
* Creates a jabber chat room member with the specified containing chat
* room parent.
* @param containingChatRoom the room that this
* <tt>ChatRoomMemberJabberImpl</tt> is a member of.
* @param nickName the nick name that the member is using to participate
* in the chat room
* @param jabberID the jabber id, if available, of the member or null
* otherwise.
* @param role the role that the member has in this room.
*/
public ChatRoomMemberJabberImpl(ChatRoomJabberImpl containingChatRoom,
String nickName,
String jabberID,
ChatRoomMemberRole role)
{
this.jabberID = jabberID;
this.nickName = nickName;
this.containingRoom = containingChatRoom;
this.role = role;
}
/**
* Returns the chat room that this member is participating in.
*
* @return the <tt>ChatRoom</tt> instance that this member belongs to.
*/
public ChatRoom getChatRoom()
{
return containingRoom;
}
/**
* Returns the contact identifier representing this contact.
*
* @return a String (contact address), uniquely representing the contact
* over the service the service being used by the associated protocol
* provider instance/
*/
public String getContactAddress()
{
return jabberID;
}
/**
* Returns the name of this member as it is known in its containing
* chatroom (aka a nickname).
*
* @return the name of this member as it is known in the containing chat
* room (aka a nickname).
*/
public String getName()
{
return nickName;
}
/**
* Returns the protocol provider instance that this member has originated
* in.
*
* @return the <tt>ProtocolProviderService</tt> instance that created
* this member and its containing cht room
*/
public ProtocolProviderService getProtocolProvider()
{
return containingRoom.getParentProvider();
}
/**
* Returns the role of this chat room member in its containing room.
*
* @return a <tt>ChatRoomMemberRole</tt> instance indicating the role
* the this member in its containing chat room.
*/
public ChatRoomMemberRole getRole()
{
return role;
}
}
|