blob: 55809286b15dcc3f4c5392aecf192cf9d4214e17 (
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
|
package net.java.sip.communicator.impl.protocol.msn;
import java.util.*;
import net.java.sip.communicator.service.protocol.*;
/**
* The Msn implementation of a sip-communicator AccountID
*
* @author Damian Minkov
*/
public class MsnAccountID
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.
*/
MsnAccountID(String id, Map<String, String> accountProperties )
{
super(id, accountProperties, ProtocolNames.MSN, "msn.com");
}
}
|