blob: 58a6302943867fa138eb6cb74966f38da930f48e (
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
|
/*
* 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.impl.protocol.jabber;
import net.java.sip.communicator.service.protocol.*;
/**
*
* @author Yana Stamcheva
*/
public class ContactResourceJabberImpl
extends ContactResource
{
private final String fullJid;
/**
* Creates a <tt>ContactResource</tt> by specifying the
* <tt>resourceName</tt>, the <tt>presenceStatus</tt> and the
* <tt>priority</tt>.
*
* @param fullJid the full jid corresponding to this contact resource
* @param contact
* @param resourceName
* @param presenceStatus
* @param priority
*/
public ContactResourceJabberImpl( String fullJid,
Contact contact,
String resourceName,
PresenceStatus presenceStatus,
int priority,
boolean isMobile)
{
super( contact,
resourceName,
presenceStatus,
priority,
isMobile);
this.fullJid = fullJid;
}
/**
* Returns the full jid corresponding to this contact resource.
*
* @return the full jid corresponding to this contact resource
*/
public String getFullJid()
{
return fullJid;
}
/**
* Sets the new <tt>PresenceStatus</tt> of this resource.
*
* @param newStatus the new <tt>PresenceStatus</tt> to set
*/
protected void setPresenceStatus(PresenceStatus newStatus)
{
this.presenceStatus = newStatus;
}
/**
* Changed whether contact is mobile one. Logged in only from mobile device.
* @param isMobile whether contact is mobile one.
*/
public void setMobile(boolean isMobile)
{
this.mobile = isMobile;
}
/**
* Changes resource priority.
* @param priority the new priority
*/
public void setPriority(int priority)
{
this.priority = priority;
}
}
|