Jitsi: the OpenSource Java VoIP and Instant Messaging client.

Uses of Class
net.java.sip.communicator.service.protocol.CallPeerState

Packages that use CallPeerState
net.java.sip.communicator.impl.callhistory   
net.java.sip.communicator.impl.gui.main.call   
net.java.sip.communicator.impl.gui.main.call.conference   
net.java.sip.communicator.impl.protocol.jabber   
net.java.sip.communicator.service.callhistory   
net.java.sip.communicator.service.protocol   
net.java.sip.communicator.service.protocol.media   
 

Uses of CallPeerState in net.java.sip.communicator.impl.callhistory
 

Methods in net.java.sip.communicator.impl.callhistory with parameters of type CallPeerState
 void CallPeerRecordImpl.setState(CallPeerState state)
          Sets the peer state
 

Uses of CallPeerState in net.java.sip.communicator.impl.gui.main.call
 

Methods in net.java.sip.communicator.impl.gui.main.call with parameters of type CallPeerState
 void OneToOneCallPeerPanel.setPeerState(CallPeerState oldState, CallPeerState newState, String stateString)
          Sets the state of the contained call peer by specifying the state name.
 void CallPeerRenderer.setPeerState(CallPeerState oldState, CallPeerState newState, String stateString)
          Sets the state of the contained call peer by specifying the state name.
 

Uses of CallPeerState in net.java.sip.communicator.impl.gui.main.call.conference
 

Methods in net.java.sip.communicator.impl.gui.main.call.conference with parameters of type CallPeerState
 void ConferenceFocusPanel.setPeerState(CallPeerState oldState, CallPeerState newState, String stateString)
          Sets the state of the contained call peer by specifying the state name.
 void ConferencePeerPanel.setPeerState(CallPeerState oldState, CallPeerState newState, String stateString)
          Sets the state of the contained call peer by specifying the state name.
 

Uses of CallPeerState in net.java.sip.communicator.impl.protocol.jabber
 

Methods in net.java.sip.communicator.impl.protocol.jabber with parameters of type CallPeerState
 void CallPeerJabberImpl.setState(CallPeerState newState, String reason, int reasonCode)
           
 

Uses of CallPeerState in net.java.sip.communicator.service.callhistory
 

Fields in net.java.sip.communicator.service.callhistory declared as CallPeerState
protected  CallPeerState CallPeerRecord.state
          The state of CallPeer.
 

Methods in net.java.sip.communicator.service.callhistory that return CallPeerState
 CallPeerState CallPeerRecord.getState()
          Returns the actual state of the peer
 

Uses of CallPeerState in net.java.sip.communicator.service.protocol
 

Fields in net.java.sip.communicator.service.protocol declared as CallPeerState
static CallPeerState CallPeerState.ALERTING_REMOTE_SIDE
          This constant value indicates that the state of the call peer is is ALERTING_REMOTE_SIDE - which means that a network connection to that peer has been established and peer's phone is currently alerting the remote user of the current call.
static CallPeerState CallPeerState.BUSY
          This constant value indicates that the state of the call peer is is BUSY - which means that an attempt to establish a call with that peer has been made and that it has been turned down by them (e.g.
static CallPeerState CallPeerState.CONNECTED
          This constant value indicates that the state of the call peer is is CONNECTED - which means that there is an ongoing call with that peer.
static CallPeerState CallPeerState.CONNECTING
          This constant value indicates that the state of the call peer is CONNECTING - which means that a network connection to that peer is currently being established.
static CallPeerState CallPeerState.CONNECTING_INCOMING_CALL
          This constant value indicates that the state of the incoming call peer is CONNECTING - which means that a network connection to that peer is currently being established.
static CallPeerState CallPeerState.CONNECTING_INCOMING_CALL_WITH_MEDIA
          This constant value indicates that the state of the incoming call peer is CONNECTING - which means that a network connection to that peer is currently being established and during the process before hearing the other peer we can still can hear media coming from the server for example.
static CallPeerState CallPeerState.CONNECTING_WITH_EARLY_MEDIA
          This constant value indicates that the state of the call peer is CONNECTING - which means that a network connection to that peer is currently being established.
static CallPeerState CallPeerState.DISCONNECTED
          This constant value indicates that the state of the call peer is is DISCONNECTED - which means that this peer is not participating :) in the call any more.
static CallPeerState CallPeerState.FAILED
          This constant value indicates that the state of the call peer is is ON_HOLD - which means that an attempt to establish a call with that peer has failed for an unexpected reason.
static CallPeerState CallPeerState.INCOMING_CALL
          This constant value indicates that the state of the call peer is is INCOMING_CALL - which means that the peer is willing to start a call with us.
static CallPeerState CallPeerState.INITIATING_CALL
          This constant value indicates that the state of the call peer is is INITIATING_CALL - which means that we're currently trying to open a socket and send our request.
static CallPeerState CallPeerState.ON_HOLD_LOCALLY
          The constant value indicating that the state of a call peer is locally put on hold.
static CallPeerState CallPeerState.ON_HOLD_MUTUALLY
          The constant value indicating that the state of a call peer is mutually - locally and remotely - put on hold.
static CallPeerState CallPeerState.ON_HOLD_REMOTELY
          The constant value indicating that the state of a call peer is remotely put on hold.
static CallPeerState CallPeerState.REFERRED
          This constant value indicates that the state of the call peer is is REFERRED - which means that this peer has transfered us to another peer.
static CallPeerState CallPeerState.UNKNOWN
          This constant value indicates that the state of the call peer is is UNKNOWN - which means that there is no information on the state for the time being (this constant should be used as a default value for newly created call peer that don't yet have an attributed call state.
 

Methods in net.java.sip.communicator.service.protocol that return CallPeerState
 CallPeerState CallPeer.getState()
          Returns an object representing the current state of that peer.
 CallPeerState AbstractCallPeer.getState()
          Returns an object representing the current state of that peer.
 

Methods in net.java.sip.communicator.service.protocol with parameters of type CallPeerState
static boolean CallPeerState.isOnHold(CallPeerState state)
          Determines whether a specific CallPeerState value signal a call hold regardless of the issuer (which may be local and/or remote).
 void AbstractCallPeer.setState(CallPeerState newState)
          Causes this CallPeer to enter the specified state.
 void AbstractCallPeer.setState(CallPeerState newState, String reason)
          Causes this CallPeer to enter the specified state.
 void AbstractCallPeer.setState(CallPeerState newState, String reason, int reasonCode)
          Causes this CallPeer to enter the specified state.
 

Uses of CallPeerState in net.java.sip.communicator.service.protocol.media
 

Methods in net.java.sip.communicator.service.protocol.media with parameters of type CallPeerState
 void MediaAwareCallPeer.setState(CallPeerState newState, String reason, int reasonCode)
          Overrides the parent set state method in order to make sure that we close our media handler whenever we enter a disconnected state.
 


Jitsi: the OpenSource Java VoIP and Instant Messaging client.

Jitsi, the OpenSource Java VoIP and Instant Messaging client.
Distributable under LGPL license.