/* * Jitsi, 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.net.*; import java.beans.*; import net.java.sip.communicator.service.protocol.event.*; /** * The CallPeer is an interface that represents peers in a call. * Users of the UIService need to implement this interface (or one of its * default implementations such DefaultCallPeer) in order to be able to * register call peer in the user interface. * *
For SIP calls for example, it would be necessary to create a
* CallPeerSipImpl class that would provide sip specific implementations of
* various methods (getAddress() for example would return the peer's sip
* URI).
*
* @author Emil Ivov
* @author Lubomir Marinov
* @author Yana Stamcheva
*/
public interface CallPeer
{
/**
* The constant indicating that a CallPeer has not yet
* transitioned into a state marking the beginning of a participation in a
* Call or that such a transition may have happened but the
* time of its occurrence is unknown.
*/
public static final long CALL_DURATION_START_TIME_UNKNOWN = 0;
/**
* The mute property name.
*/
public static final String MUTE_PROPERTY_NAME = "Mute";
/**
* Returns a unique identifier representing this peer. Identifiers
* returned by this method should remain unique across calls. In other
* words, if it returned the value of "A" for a given peer it should
* not return that same value for any other peer and return a
* different value even if the same person (address) is participating in
* another call. Values need not remain unique after restarting the program.
*
* @return an identifier representing this call peer.
*/
public String getPeerID();
/**
* Returns a reference to the call that this peer belongs to.
* @return a reference to the call containing this peer.
*/
public Call getCall();
/**
* Returns a human readable name representing this peer.
* @return a String containing a name for that peer.
*/
public String getDisplayName();
/**
* Returns a String locator for that peer. A locator might be a SIP
* URI, an IP address or a telephone number.
* @return the peer's address or phone number.
*/
public String getAddress();
/**
* Returns an object representing the current state of that peer.
* CallPeerState may vary among CONNECTING, RINGING, CALLING, BUSY,
* CONNECTED, and others, and it reflects the state of the connection between
* us and that peer.
* @return a CallPeerState instance representing the peer's
* state.
*/
public CallPeerState getState();
/**
* Allows the user interface to register a listener interested in changes
* @param listener a listener instance to register with this peer.
*/
public void addCallPeerListener(CallPeerListener listener);
/**
* Unregisters the specified listener.
* @param listener the listener to unregister.
*/
public void removeCallPeerListener(CallPeerListener listener);
/**
* Allows the user interface to register a listener interested in security
* status changes.
*
* @param listener a listener instance to register with this peer
*/
public void addCallPeerSecurityListener(
CallPeerSecurityListener listener);
/**
* Unregisters the specified listener.
*
* @param listener the listener to unregister
*/
public void removeCallPeerSecurityListener(
CallPeerSecurityListener listener);
/**
* Allows the user interface to register a listener interested in property
* changes.
* @param listener a property change listener instance to register with this
* peer.
*/
public void addPropertyChangeListener(PropertyChangeListener listener);
/**
* Unregisters the specified property change listener.
*
* @param listener the property change listener to unregister.
*/
public void removePropertyChangeListener(PropertyChangeListener listener);
/**
* Gets the time at which this CallPeer transitioned
* into a state (likely {@link CallPeerState#CONNECTED}) marking the
* start of the duration of the participation in a Call.
*
* @return the time at which this CallPeer transitioned
* into a state marking the start of the duration of the
* participation in a Call or
* {@link #CALL_DURATION_START_TIME_UNKNOWN} if such a transition
* has not been performed
*/
long getCallDurationStartTime();
/**
* Returns a string representation of the peer in the form of
*
* Display Name <address>;status=CallPeerStatus
*
* @return a string representation of the peer and its state.
*/
public String toString();
/**
* The method returns an image representation of the call peer (e.g.
* a photo). Generally, the image representation is acquired from the
* underlying telephony protocol and is transferred over the network during
* call negotiation.
*
* @return byte[] a byte array containing the image or null if no image is
* available.
*/
public byte[] getImage();
/**
* Returns the protocol provider that this peer belongs to.
*
* @return a reference to the ProtocolProviderService that this peer
* belongs to.
*/
public ProtocolProviderService getProtocolProvider();
/**
* Returns the contact corresponding to this peer or null if no
* particular contact has been associated.
*
* @return the Contact corresponding to this peer or null * if no particular contact has been associated. */ public Contact getContact(); /** * Returns a URL pointing to a location with call control information or * null if such an URL is not available for the current call peer. * * @return a URL link to a location with call information or a call control * web interface related to this peer or null if no such URL * is available. */ public URL getCallInfoURL(); /** * Determines whether the audio stream (if any) being sent to this * peer is mute. * * @return true if an audio stream is being sent to this * peer and it is currently mute; false, otherwise */ public boolean isMute(); /** * Determines whether this peer is acting as a conference focus and * thus may provide information about ConferenceMember such as * {@link #getConferenceMembers()} and {@link #getConferenceMemberCount()}. * * @return true if this peer is acting as a conference * focus; false, otherwise */ public boolean isConferenceFocus(); /** * Gets the ConferenceMembers currently known to this * peer if it is acting as a conference focus. * * @return an array of ConferenceMembers describing the members * of a conference managed by this peer if it is acting as a * conference focus. If this peer is not acting as a * conference focus or it does but there are currently no members in * the conference it manages, an empty array is returned. */ public ConferenceMember[] getConferenceMembers(); /** * Gets the number of ConferenceMembers currently known to this * peer if it is acting as a conference focus. * * @return the number of ConferenceMembers currently known to * this peer if it is acting as a conference focus. If this * peer is not acting as a conference focus or it does but * there are currently no members in the conference it manages, a * value of zero is returned. */ public int getConferenceMemberCount(); /** * Adds a specific CallPeerConferenceListener to the * list of listeners interested in and notified about changes in * conference-related information such as this peer acting or not * acting as a conference focus and conference membership details. * * @param listener * a CallPeerConferenceListener to be * notified about changes in conference-related information. If * the specified listener is already in the list of interested * listeners (i.e. it has been previously added), it is not added * again. */ public void addCallPeerConferenceListener( CallPeerConferenceListener listener); /** * Removes a specific CallPeerConferenceListener from * the list of listeners interested in and notified about changes in * conference-related information such as this peer acting or not * acting as a conference focus and conference membership details. * * @param listener * a CallPeerConferenceListener to no longer * be notified about changes in conference-related information */ public void removeCallPeerConferenceListener( CallPeerConferenceListener listener); /** * Adds a specific SoundLevelListener to the list of * listeners interested in and notified about changes in stream sound level * related information. * * @param listener the SoundLevelListener to add */ public void addStreamSoundLevelListener(SoundLevelListener listener); /** * Removes a specific SoundLevelListener of the list of * listeners interested in and notified about changes in stream sound level * related information. * * @param listener the SoundLevelListener to remove */ public void removeStreamSoundLevelListener(SoundLevelListener listener); /** * Adds a specific SoundLevelListener to the list * of listeners interested in and notified about changes in conference * members sound level. * * @param listener the SoundLevelListener to add */ public void addConferenceMembersSoundLevelListener( ConferenceMembersSoundLevelListener listener); /** * Removes a specific SoundLevelListener of the * list of listeners interested in and notified about changes in conference * members sound level. * * @param listener the SoundLevelListener to * remove */ public void removeConferenceMembersSoundLevelListener( ConferenceMembersSoundLevelListener listener); /** * Returns the currently used security settings of this CallPeer. * * @return the CallPeerSecurityStatusEvent that contains the * current security settings. */ public CallPeerSecurityStatusEvent getCurrentSecuritySettings(); }