mirror of https://github.com/sipwise/jitsi.git
parent
95a8a6f0ce
commit
2f4e4899ce
@ -0,0 +1,25 @@
|
||||
/*
|
||||
* 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.sip;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
import net.java.sip.communicator.service.protocol.*;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Emil Ivov
|
||||
*/
|
||||
public class SipAccountID
|
||||
extends AccountID
|
||||
{
|
||||
protected SipAccountID(String userID, Map accountProperties,
|
||||
String protocolName, String serviceName)
|
||||
{
|
||||
super(userID, accountProperties, protocolName, serviceName);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in new issue