Class IceCandidatePair

java.lang.Object
org.kurento.client.IceCandidatePair

public class IceCandidatePair extends Object
The ICE candidate pair used by the ICE library, for a certain stream.
  • Constructor Details

    • IceCandidatePair

      protected IceCandidatePair()
      Default private constructor of IceCandidatePair for serialization with Jackson
    • IceCandidatePair

      public IceCandidatePair(String streamId, int componentId, String localCandidate, String remoteCandidate)
      Create a IceCandidatePair
  • Method Details

    • getStreamId

      public String getStreamId()
      get Stream ID of the ICE connection
    • setStreamId

      public void setStreamId(String streamId)
      set Stream ID of the ICE connection
    • getComponentId

      public int getComponentId()
      get Component ID of the ICE connection
    • setComponentId

      public void setComponentId(int componentId)
      set Component ID of the ICE connection
    • getLocalCandidate

      public String getLocalCandidate()
      get The local candidate used by the ICE library.
    • setLocalCandidate

      public void setLocalCandidate(String localCandidate)
      set The local candidate used by the ICE library.
    • getRemoteCandidate

      public String getRemoteCandidate()
      get The remote candidate used by the ICE library.
    • setRemoteCandidate

      public void setRemoteCandidate(String remoteCandidate)
      set The remote candidate used by the ICE library.