Package org.kurento.client
Class IceCandidate
java.lang.Object
org.kurento.client.IceCandidate
IceCandidate representation based on
RTCIceCandidate
interface.- See Also:
-
Constructor Summary
ModifierConstructorDescriptionprotected
Default 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'.int
get The index (starting at zero) of the m-line in the SDP this candidate is associated with.void
setCandidate
(String candidate) set The candidate-attribute as defined in section 15.1 of ICE (rfc5245).void
set If present, this contains the identifier of the 'media stream identification'.void
setSdpMLineIndex
(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
Create a 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.
-