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
|
/*
* 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 java.util.*;
import net.java.sip.communicator.service.protocol.*;
/**
* The Jabber implementation of a sip-communicator AccountID
*
* @author Damian Minkov
*/
public class JabberAccountID
extends AccountID
{
/**
* Creates an account id from the specified id and account properties.
* @param id the id identifying this account
* @param accountProperties any other properties necessary for the account.
*/
JabberAccountID(String id, Map<String, String> accountProperties )
{
super( id, accountProperties,
ProtocolNames.JABBER,
getServiceName(accountProperties));
}
/**
* Returns the service name - the server we are logging to
* if it is null which is not supposed to be - we return for compatibility
* the string we used in the first release for creating AccountID
* (Using this string is wrong, but used for compatibility for now)
* @param accountProperties Map
* @return String
*/
private static String getServiceName(Map<String, String> accountProperties)
{
String serviceName
= accountProperties.get(ProtocolProviderFactory.SERVER_ADDRESS);
return (serviceName != null) ? serviceName : "jabber.org";
}
/**
* Returns the list of STUN servers that this account is currently
* configured to use.
*
* @return the list of STUN servers that this account is currently
* configured to use.
*/
public List<StunServerDescriptor> getStunServers()
{
Map<String, String> accountProperties = getAccountProperties();
List<StunServerDescriptor> serList
= new ArrayList<StunServerDescriptor>();
for (int i = 0; i < StunServerDescriptor.MAX_STUN_SERVER_COUNT; i ++)
{
StunServerDescriptor stunServer
= StunServerDescriptor.loadDescriptor(
accountProperties,
ProtocolProviderFactory.STUN_PREFIX + i);
// If we don't find a stun server with the given index, it means
// that there're no more servers left in the table so we've nothing
// more to do here.
if (stunServer == null)
break;
serList.add(stunServer);
}
return serList;
}
/**
* Determines whether this account's provider is supposed to auto discover
* STUN and TURN servers.
*
* @return <tt>true</tt> if this provider would need to discover STUN/TURN
* servers and false otherwise.
*/
public boolean isStunServerDiscoveryEnabled()
{
return
getAccountPropertyBoolean(
ProtocolProviderFactory.AUTO_DISCOVER_STUN,
false);
}
/**
* Determines whether this account's provider use the default STUN server
* provided by SIP Communicator if there is no other STUN/TURN server
* discovered/configured.
*
* @return <tt>true</tt> if this provider would use the default STUN server,
* <tt>false</tt> otherwise
*/
public boolean isUseDefaultStunServer()
{
return
getAccountPropertyBoolean(
ProtocolProviderFactory.USE_DEFAULT_STUN_SERVER,
true);
}
}
|