/* * 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.service.protocol; import java.util.*; import net.java.sip.communicator.service.protocol.event.*; /** * The ProtocolProvider interface should be implemented by bundles that wrap * Instant Messaging and telephony protocol stacks. It gives the user interface * a way to plug into these stacks and receive notifications on status change * and incoming calls, as well as deliver user requests for establishing or * ending calls, putting peers on hold and etc. *
* An instance of a ProtocolProviderService corresponds to a particular user * account and all operations performed through a provider (sending messages, * modifying contact lists, receiving calls)would pertain to this particular * user account. *
* ProtocolProviderService instances are created through the provider factory.
* Each protocol provider is assigned a unique AccountID instance that uniquely
* identifies it. Account id's for different accounts are guaranteed to be
* different and in the same time the ID of a particular account against a given
* service over any protocol will always be the same (so that we detect attempts
* for creating the same account twice.)
*
* @author Emil Ivov
* @see AccountID
*/
public interface ProtocolProviderService
{
/**
* The name of the property containing the number of binds that a Protocol
* Provider Service Implementation should execute in case a port is already
* bound to (each retry would be on a new random port).
*/
public static final String BIND_RETRIES_PROPERTY_NAME
= "net.java.sip.communicator.service.protocol.BIND_RETRIES";
/**
* The default number of binds that a Protocol Provider Service
* Implementation should execute in case a port is already bound to
* (each retry would be on a new random port).
*/
public static final int BIND_RETRIES_DEFAULT_VALUE = 50;
/**
* Starts the registration process. Connection details such as
* registration server, user name/number are provided through the
* configuration service through implementation specific properties.
*
* @param authority the security authority that will be used for resolving
* any security challenges that may be returned during the
* registration or at any moment while wer're registered.
* @throws OperationFailedException with the corresponding code it the
* registration fails for some reason (e.g. a networking error or an
* implementation problem).
*/
public void register(SecurityAuthority authority)
throws OperationFailedException;
/**
* Ends the registration of this protocol provider with the current
* registration service.
* @throws OperationFailedException with the corresponding code it the
* registration fails for some reason (e.g. a networking error or an
* implementation problem).
*/
public void unregister()
throws OperationFailedException;
/**
* Indicates whether or not this provider is registered
* @return true if the provider is currently registered and false otherwise.
*/
public boolean isRegistered();
/**
* Returns the state of the registration of this protocol provider with the
* corresponding registration service.
* @return ProviderRegistrationState
*/
public RegistrationState getRegistrationState();
/**
* Returns the short name of the protocol that the implementation of this
* provider is based upon (like SIP, Jabber, ICQ/AIM, or others for
* example). If the name of the protocol has been enumerated in
* ProtocolNames then the value returned by this method must be the same as
* the one in ProtocolNames.
*
* @return a String containing the short name of the protocol this service
* is implementing (most often that would be a name in ProtocolNames).
*/
public String getProtocolName();
/**
* Returns the protocol display name. This is the name that would be used
* by the GUI to display the protocol name.
*
* @return a String containing the display name of the protocol this service
* is implementing
*/
public String getProtocolDisplayName();
/**
* Returns the protocol logo icon.
* @return the protocol logo icon
*/
public ProtocolIcon getProtocolIcon();
/**
* Registers the specified listener with this provider so that it would
* receive notifications on changes of its state or other properties such
* as its local address and display name.
* @param listener the listener to register.
*/
public void addRegistrationStateChangeListener(
RegistrationStateChangeListener listener);
/**
* Removes the specified listener.
* @param listener the listener to remove.
*/
public void removeRegistrationStateChangeListener(
RegistrationStateChangeListener listener);
/**
* Returns an array containing all operation sets supported by the current
* implementation. When querying this method users must be prepared to
* receive any subset of the OperationSet-s defined by this service. They
* MUST ignore any OperationSet-s that they are not aware of and that may be
* defined by future versions of this service. Such "unknown" OperationSet-s
* though not encouraged, may also be defined by service implementors.
*
* @return a {@link Map} containing instances of all supported operation
* sets mapped against their class names (e.g.
* OperationSetPresence.class.getName() associated with a
* OperationSetPresence instance).
*/
public Map