Class IceCandidate
java.lang.Object
org.kurento.client.IceCandidate
IceCandidate representation based on
RTCIceCandidate interface.- See Also:
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedDefault private constructor of IceCandidate for serialization with JacksonIceCandidate(String candidate, String sdpMid, int sdpMLineIndex) Create a IceCandidate -
Method Summary
Modifier and TypeMethodDescriptionget The candidate-attribute as defined in section 15.1 of ICE (rfc5245).get If present, this contains the identifier of the 'media stream identification'.intget The index (starting at zero) of the m-line in the SDP this candidate is associated with.voidsetCandidate(String candidate) set The candidate-attribute as defined in section 15.1 of ICE (rfc5245).voidset If present, this contains the identifier of the 'media stream identification'.voidsetSdpMLineIndex(int sdpMLineIndex) set The index (starting at zero) of the m-line in the SDP this candidate is associated with.
-
Constructor Details
-
IceCandidate
protected IceCandidate()Default private constructor of IceCandidate for serialization with Jackson -
IceCandidate
-
-
Method Details
-
getCandidate
get The candidate-attribute as defined in section 15.1 of ICE (rfc5245). -
setCandidate
set The candidate-attribute as defined in section 15.1 of ICE (rfc5245). -
getSdpMid
get If present, this contains the identifier of the 'media stream identification'. -
setSdpMid
set If present, this contains the identifier of the 'media stream identification'. -
getSdpMLineIndex
public int getSdpMLineIndex()get The index (starting at zero) of the m-line in the SDP this candidate is associated with. -
setSdpMLineIndex
public void setSdpMLineIndex(int sdpMLineIndex) set The index (starting at zero) of the m-line in the SDP this candidate is associated with.
-