Uses of Class
com.sipresponse.flibblecallmgr.MediaSourceType

Packages that use MediaSourceType
com.sipresponse.flibblecallmgr   
com.sipresponse.flibblecallmgr.internal.actions   
com.sipresponse.flibblecallmgr.internal.media   
 

Uses of MediaSourceType in com.sipresponse.flibblecallmgr
 

Methods in com.sipresponse.flibblecallmgr that return MediaSourceType
static MediaSourceType MediaSourceType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MediaSourceType[] MediaSourceType.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in com.sipresponse.flibblecallmgr with parameters of type MediaSourceType
 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.changeMediaSource(java.lang.String callHandle, MediaSourceType mediaSourceType, java.lang.String mediaFilename, boolean loop)
          Changes the media source for a call in progress.
 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.
 

Uses of MediaSourceType in com.sipresponse.flibblecallmgr.internal.actions
 

Constructors in com.sipresponse.flibblecallmgr.internal.actions with parameters of type MediaSourceType
AnswerCallAction(CallManager callMgr, Call call, MediaSourceType mediaSourceType, java.lang.String mediaFilename, boolean loop, int initialVolume, int initialGain)
           
ChangeMediaAction(CallManager callMgr, Call call, MediaSourceType mediaSourceType, java.lang.String mediaFilename, boolean loop)
           
PlaceCallAction(CallManager callMgr, Call call, MediaSourceType mediaSourceType, java.lang.String mediaFilename, boolean loop, int initialVolume, int initialGain)
           
 

Uses of MediaSourceType in com.sipresponse.flibblecallmgr.internal.media
 

Methods in com.sipresponse.flibblecallmgr.internal.media with parameters of type MediaSourceType
abstract  void FlibbleMediaProvider.changeMediaSource(MediaSourceType mediaSourceType, java.lang.String mediaFilename, boolean loop)
           
abstract  void FlibbleMediaProvider.initializeRtpSend(CallManager callMgr, java.lang.String callHandle, java.lang.String destIp, int destPort, int srcPort, MediaSourceType mediaSourceType, java.lang.String mediaFilename, boolean loop)