blob: b7bdb010c14adbf6d6691b95cb3114d99448bcad (
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
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*
* SSHAccountID.java
*
* SSH Suport in SIP Communicator - GSoC' 07 Project
*
*/
package net.java.sip.communicator.impl.protocol.ssh;
import net.java.sip.communicator.service.protocol.*;
import java.util.Map;
/**
* The SSH implementation of a sip-communicator account id.
* @author Shobhit Jindal
*/
public class SSHAccountID
extends AccountID
{
/**
* Creates an account id from the specified id and account properties.
*
* @param userID the user identifier correspnding to thi account
* @param accountProperties any other properties necessary for the account.
*/
SSHAccountID(String userID, Map<String, String> accountProperties)
{
super(userID
, accountProperties
, "SSH"
, "sip-communicator.org");
}
}
|