Class RTCIceCandidateAttributes
java.lang.Object
org.kurento.client.Stats
org.kurento.client.RTCStats
org.kurento.client.RTCIceCandidateAttributes
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedDefault private constructor of RTCIceCandidateAttributes for serialization with JacksonRTCIceCandidateAttributes(String id, StatsType type, long timestampMillis, String ipAddress, long portNumber, String transport, RTCStatsIceCandidateType candidateType, long priority, String addressSourceUrl) Create a RTCIceCandidateAttributes -
Method Summary
Modifier and TypeMethodDescriptionget The URL of the TURN or STUN server indicated in the RTCIceServers that translated this IP address.get The enumeration RTCStatsIceCandidateType is based on the cand-type defined in [RFC5245] section 15.1.get It is the IP address of the candidate, allowing for IPv4 addresses, IPv6 addresses, and fully qualified domain names (FQDNs).longget It is the port number of the candidate.longget Represents the priority of the candidateget Valid values for transport is one of udp and tcp.voidsetAddressSourceUrl(String addressSourceUrl) set The URL of the TURN or STUN server indicated in the RTCIceServers that translated this IP address.voidsetCandidateType(RTCStatsIceCandidateType candidateType) set The enumeration RTCStatsIceCandidateType is based on the cand-type defined in [RFC5245] section 15.1.voidsetIpAddress(String ipAddress) set It is the IP address of the candidate, allowing for IPv4 addresses, IPv6 addresses, and fully qualified domain names (FQDNs).voidsetPortNumber(long portNumber) set It is the port number of the candidate.voidsetPriority(long priority) set Represents the priority of the candidatevoidsetTransport(String transport) set Valid values for transport is one of udp and tcp.Methods inherited from class Stats
getId, getTimestampMillis, getType, setId, setTimestampMillis, setType
-
Constructor Details
-
RTCIceCandidateAttributes
protected RTCIceCandidateAttributes()Default private constructor of RTCIceCandidateAttributes for serialization with Jackson -
RTCIceCandidateAttributes
-
-
Method Details
-
getIpAddress
get It is the IP address of the candidate, allowing for IPv4 addresses, IPv6 addresses, and fully qualified domain names (FQDNs). -
setIpAddress
set It is the IP address of the candidate, allowing for IPv4 addresses, IPv6 addresses, and fully qualified domain names (FQDNs). -
getPortNumber
public long getPortNumber()get It is the port number of the candidate. -
setPortNumber
public void setPortNumber(long portNumber) set It is the port number of the candidate. -
getTransport
get Valid values for transport is one of udp and tcp. Based on the 'transport' defined in [RFC5245] section 15.1. -
setTransport
set Valid values for transport is one of udp and tcp. Based on the 'transport' defined in [RFC5245] section 15.1. -
getCandidateType
get The enumeration RTCStatsIceCandidateType is based on the cand-type defined in [RFC5245] section 15.1. -
setCandidateType
set The enumeration RTCStatsIceCandidateType is based on the cand-type defined in [RFC5245] section 15.1. -
getPriority
public long getPriority()get Represents the priority of the candidate -
setPriority
public void setPriority(long priority) set Represents the priority of the candidate -
getAddressSourceUrl
get The URL of the TURN or STUN server indicated in the RTCIceServers that translated this IP address. -
setAddressSourceUrl
set The URL of the TURN or STUN server indicated in the RTCIceServers that translated this IP address.
-