Uses of Class
com.sipresponse.flibblecallmgr.FlibbleResult

Packages that use FlibbleResult
com.sipresponse.flibblecallmgr   
 

Uses of FlibbleResult in com.sipresponse.flibblecallmgr
 

Methods in com.sipresponse.flibblecallmgr that return FlibbleResult
 FlibbleResult CallManager.acceptCall(java.lang.String callHandle, int statusCode)
          Accepts an invite from a remote party, sending a non final response
 FlibbleResult CallManager.answerCall(java.lang.String callHandle, MediaSourceType mediaSourceType, java.lang.String mediaFilename, boolean loop, int initialVolume, int initialGain)
          Answers an invite from a remote party, sending a final 200 OK response
 FlibbleResult CallManager.blindTransfer(java.lang.String callHandle, java.lang.String targetUri)
          Transfers a currently connected call by sending a REFER message to the remote party.
 FlibbleResult CallManager.changeMediaSource(java.lang.String callHandle, MediaSourceType mediaSourceType, java.lang.String mediaFilename, boolean loop)
          Changes the media source for a call in progress.
 FlibbleResult CallManager.enableEchoSuppression(boolean enable, float percentSuppression)
          Enables local echo suppression.
 FlibbleResult CallManager.endCall(java.lang.String callHandle)
          Ends a currently connected call by sending a BYE message to the remote party.
 FlibbleResult CallManager.holdCall(java.lang.String callHandle, boolean hold, int volume)
          Puts a call on hold, or takes a call off hold, in a asynchronous manner.
 FlibbleResult CallManager.holdCallSynchronous(java.lang.String callHandle, boolean hold, int volume, int timeout)
          Puts a call on hold, or takes a call off hold, in a synchronous manner.
 FlibbleResult CallManager.initialize()
          Initializes the CallManager by loading the default property file, "flibble.properties",
 FlibbleResult CallManager.initialize(java.lang.String filename)
          Initializes the CallManager by loading the default property file specified by the filename
 FlibbleResult CallManager.initialize(java.lang.String localIp, int udpSipPort, int mediaPortStart, int mediaPortEnd, java.lang.String domain, java.lang.String proxyAddress, int proxyPort, java.lang.String stunServer, java.lang.String userAgent, boolean useSoundCard, java.lang.String mediaPluginClass)
          Initializes the CallManager.
 FlibbleResult CallManager.joinCalls(CallData[] calls)
          Joins currently connected calls into a conference (CURRENTLY UNIMPLEMENTED)
 FlibbleResult CallManager.joinCalls(java.util.Vector<CallData> calls)
          Joins currently connected calls into a conference (CURRENTLY UNIMPLEMENTED)
 FlibbleResult CallManager.placeCall(java.lang.String callHandle, MediaSourceType mediaSourceType, java.lang.String filename, boolean loop, int initialVolume, int initialGain)
          Sends an INVITE to the remote party.
 FlibbleResult CallManager.playFileLocally(java.net.URL url, boolean loop, int volume)
          Plays a media file to the system's audio playout device.
 FlibbleResult CallManager.setCallVolume(java.lang.String callHandle, int vol)
          Sets the call playout volume for a specific call.
 FlibbleResult CallManager.setGain(int gain)
          Sets the microphone gain level.
 FlibbleResult CallManager.stopFileLocally(java.net.URL url)
          Stops local playout of a media file.
 FlibbleResult CallManager.stopLocalPlayoutAll()
          Stops local playout of all media files.
static FlibbleResult FlibbleResult.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FlibbleResult[] FlibbleResult.values()
          Returns an array containing the constants of this enum type, in the order they're declared.