mirror of https://github.com/OpenVidu/openvidu.git
openvidu-java-client: JavaDoc absolute links
parent
9aee3eaf44
commit
ce90918274
|
@ -85,7 +85,7 @@ public class Connection {
|
|||
}
|
||||
|
||||
/**
|
||||
* <a href="/en/stable/openvidu-pro/" target="_blank" style="display:
|
||||
* <a href="https://docs.openvidu.io/en/stable/openvidu-pro/" target="_blank" style="display:
|
||||
* inline-block; background-color: rgb(0, 136, 170); color: white; font-weight:
|
||||
* bold; padding: 0px 5px; margin-right: 5px; border-radius: 3px; font-size:
|
||||
* 13px; line-height:21px; font-family: Montserrat, sans-serif">PRO</a>
|
||||
|
@ -118,7 +118,7 @@ public class Connection {
|
|||
/**
|
||||
* Returns the data associated to the connection on the client-side. This value
|
||||
* is set with second parameter of method
|
||||
* <a href="/en/stable/api/openvidu-browser/classes/session.html#connect" target
|
||||
* <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/session.html#connect" target
|
||||
* ="_blank">Session.connect</a> in OpenVidu Browser
|
||||
*/
|
||||
public String getClientData() {
|
||||
|
|
|
@ -108,7 +108,7 @@ public class KurentoOptions {
|
|||
* Defines the maximum number of Kbps that the client owning the token will be
|
||||
* able to receive from Kurento Media Server. 0 means unconstrained. Giving a
|
||||
* value to this property will override the global configuration set in <a
|
||||
* href="/en/stable/reference-docs/openvidu-server-params/#configuration-parameters-for-openvidu-server"
|
||||
* href="https://docs.openvidu.io/en/stable/reference-docs/openvidu-server-params/#configuration-parameters-for-openvidu-server"
|
||||
* target="_blank">OpenVidu Server configuration</a> (parameter
|
||||
* <code>openvidu.streams.video.max-recv-bandwidth</code>) for every incoming
|
||||
* stream of the user owning the token. <br>
|
||||
|
@ -125,7 +125,7 @@ public class KurentoOptions {
|
|||
* Defines the minimum number of Kbps that the client owning the token will try
|
||||
* to receive from Kurento Media Server. 0 means unconstrained. Giving a value
|
||||
* to this property will override the global configuration set in <a href=
|
||||
* "/en/stable/reference-docs/openvidu-server-params/#configuration-parameters-for-openvidu-server"
|
||||
* "https://docs.openvidu.io/en/stable/reference-docs/openvidu-server-params/#configuration-parameters-for-openvidu-server"
|
||||
* target="_blank">OpenVidu Server configuration</a> (parameter
|
||||
* <code>openvidu.streams.video.min-recv-bandwidth</code>) for every incoming
|
||||
* stream of the user owning the token.
|
||||
|
@ -138,7 +138,7 @@ public class KurentoOptions {
|
|||
* Defines the maximum number of Kbps that the client owning the token will be
|
||||
* able to send to Kurento Media Server. 0 means unconstrained. Giving a value
|
||||
* to this property will override the global configuration set in <a href=
|
||||
* "/en/stable/reference-docs/openvidu-server-params/#configuration-parameters-for-openvidu-server"
|
||||
* "https://docs.openvidu.io/en/stable/reference-docs/openvidu-server-params/#configuration-parameters-for-openvidu-server"
|
||||
* target="_blank">OpenVidu Server configuration</a> (parameter
|
||||
* <code>openvidu.streams.video.max-send-bandwidth</code>) for every outgoing
|
||||
* stream of the user owning the token. <br>
|
||||
|
@ -154,7 +154,7 @@ public class KurentoOptions {
|
|||
* Defines the minimum number of Kbps that the client owning the token will try
|
||||
* to send to Kurento Media Server. 0 means unconstrained. Giving a value to
|
||||
* this property will override the global configuration set in <a href=
|
||||
* "/en/stable/reference-docs/openvidu-server-params/#configuration-parameters-for-openvidu-server"
|
||||
* "https://docs.openvidu.io/en/stable/reference-docs/openvidu-server-params/#configuration-parameters-for-openvidu-server"
|
||||
* target="_blank">OpenVidu Server configuration</a> (parameter
|
||||
* <code>openvidu.streams.video.min-send-bandwidth</code>) for every outgoing
|
||||
* stream of the user owning the token.
|
||||
|
@ -166,7 +166,7 @@ public class KurentoOptions {
|
|||
/**
|
||||
* Defines the names of the filters the user owning the token will be able to
|
||||
* apply. See
|
||||
* <a href="/en/stable/advanced-features/filters/" target= "_blank">Voice and
|
||||
* <a href="https://docs.openvidu.io/en/stable/advanced-features/filters/" target= "_blank">Voice and
|
||||
* video filters</a>
|
||||
*/
|
||||
public String[] getAllowedFilters() {
|
||||
|
|
|
@ -25,7 +25,7 @@ import com.google.gson.JsonObject;
|
|||
*
|
||||
* <br>
|
||||
* This is a backend representation of a published media stream (see
|
||||
* <a href="/en/stable/api/openvidu-browser/classes/stream.html" target="_blank"> OpenVidu
|
||||
* <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/stream.html" target="_blank"> OpenVidu
|
||||
* Browser Stream class</a>).
|
||||
*/
|
||||
public class Publisher {
|
||||
|
@ -65,10 +65,10 @@ public class Publisher {
|
|||
|
||||
/**
|
||||
* Returns the unique identifier of the
|
||||
* <a href="/en/stable/api/openvidu-browser/classes/stream.html" target=
|
||||
* <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/stream.html" target=
|
||||
* "_blank">Stream</a> associated to this Publisher. Each Publisher is paired
|
||||
* with only one Stream, so you can identify each Publisher by its
|
||||
* <a href="/en/stable/api/openvidu-browser/classes/stream.html#streamid" target=
|
||||
* <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/stream.html#streamid" target=
|
||||
* "_blank"><code>Stream.streamId</code></a>
|
||||
*/
|
||||
public String getStreamId() {
|
||||
|
@ -84,7 +84,7 @@ public class Publisher {
|
|||
}
|
||||
|
||||
/**
|
||||
* See properties of <a href="/en/stable/api/openvidu-browser/classes/stream.html" target=
|
||||
* See properties of <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/stream.html" target=
|
||||
* "_blank">Stream</a> object in OpenVidu Browser library to find out more
|
||||
*/
|
||||
public boolean hasVideo() {
|
||||
|
@ -92,7 +92,7 @@ public class Publisher {
|
|||
}
|
||||
|
||||
/**
|
||||
* See properties of <a href="/en/stable/api/openvidu-browser/classes/stream.html" target=
|
||||
* See properties of <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/stream.html" target=
|
||||
* "_blank">Stream</a> object in OpenVidu Browser library to find out more
|
||||
*/
|
||||
public boolean hasAudio() {
|
||||
|
@ -100,7 +100,7 @@ public class Publisher {
|
|||
}
|
||||
|
||||
/**
|
||||
* See properties of <a href="/en/stable/api/openvidu-browser/classes/stream.html" target=
|
||||
* See properties of <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/stream.html" target=
|
||||
* "_blank">Stream</a> object in OpenVidu Browser library to find out more
|
||||
*/
|
||||
public Boolean isAudioActive() {
|
||||
|
@ -108,7 +108,7 @@ public class Publisher {
|
|||
}
|
||||
|
||||
/**
|
||||
* See properties of <a href="/en/stable/api/openvidu-browser/classes/stream.html" target=
|
||||
* See properties of <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/stream.html" target=
|
||||
* "_blank">Stream</a> object in OpenVidu Browser library to find out more
|
||||
*/
|
||||
public Boolean isVideoActive() {
|
||||
|
@ -116,7 +116,7 @@ public class Publisher {
|
|||
}
|
||||
|
||||
/**
|
||||
* See properties of <a href="/en/stable/api/openvidu-browser/classes/stream.html" target=
|
||||
* See properties of <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/stream.html" target=
|
||||
* "_blank">Stream</a> object in OpenVidu Browser library to find out more
|
||||
*/
|
||||
public Integer getFrameRate() {
|
||||
|
@ -124,7 +124,7 @@ public class Publisher {
|
|||
}
|
||||
|
||||
/**
|
||||
* See properties of <a href="/en/stable/api/openvidu-browser/classes/stream.html" target=
|
||||
* See properties of <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/stream.html" target=
|
||||
* "_blank">Stream</a> object in OpenVidu Browser library to find out more
|
||||
*/
|
||||
public String getTypeOfVideo() {
|
||||
|
@ -132,7 +132,7 @@ public class Publisher {
|
|||
}
|
||||
|
||||
/**
|
||||
* See properties of <a href="/en/stable/api/openvidu-browser/classes/stream.html" target=
|
||||
* See properties of <a href="https://docs.openvidu.io/en/stable/api/openvidu-browser/classes/stream.html" target=
|
||||
* "_blank">Stream</a> object in OpenVidu Browser library to find out more
|
||||
*/
|
||||
public String getVideoDimensions() {
|
||||
|
|
|
@ -195,7 +195,7 @@ public class Recording {
|
|||
/**
|
||||
* URL of the recording. You can access the file from there. It is
|
||||
* <code>null</code> until recording reaches "ready" or "failed" status. If
|
||||
* <a href="/en/stable/reference-docs/openvidu-server-params/" target=
|
||||
* <a href="https://docs.openvidu.io/en/stable/reference-docs/openvidu-server-params/" target=
|
||||
* "_blank">OpenVidu Server configuration</a> property
|
||||
* <code>openvidu.recording.public-access</code> is false, this path will be
|
||||
* secured with OpenVidu credentials
|
||||
|
|
|
@ -47,7 +47,7 @@ public enum RecordingLayout {
|
|||
|
||||
/**
|
||||
* Use your own custom recording layout. See
|
||||
* <a href="/en/stable/advanced-features/recording#custom-recording-layouts"
|
||||
* <a href="https://docs.openvidu.io/en/stable/advanced-features/recording#custom-recording-layouts"
|
||||
* target="_blank">Custom recording layouts</a> to learn more
|
||||
*/
|
||||
CUSTOM
|
||||
|
|
|
@ -102,7 +102,7 @@ public class RecordingProperties {
|
|||
* {@link io.openvidu.java.client.RecordingProperties.Builder#outputMode(Recording.OutputMode)}
|
||||
* has been called with value
|
||||
* {@link io.openvidu.java.client.Recording.OutputMode#COMPOSED}.<br>
|
||||
* See <a href="/en/stable/advanced-features/recording#custom-recording-layouts"
|
||||
* See <a href="https://docs.openvidu.io/en/stable/advanced-features/recording#custom-recording-layouts"
|
||||
* target="_blank">Custom recording layouts</a> to learn more
|
||||
*/
|
||||
public RecordingProperties.Builder customLayout(String path) {
|
||||
|
@ -196,7 +196,7 @@ public class RecordingProperties {
|
|||
* If {@link io.openvidu.java.client.RecordingProperties#recordingLayout()} is
|
||||
* set to {@link io.openvidu.java.client.RecordingLayout#CUSTOM}, this property
|
||||
* defines the relative path to the specific custom layout you want to use.<br>
|
||||
* See <a href="/en/stable/advanced-features/recording#custom-recording-layouts"
|
||||
* See <a href="https://docs.openvidu.io/en/stable/advanced-features/recording#custom-recording-layouts"
|
||||
* target="_blank">Custom recording layouts</a> to learn more
|
||||
*/
|
||||
public String customLayout() {
|
||||
|
|
Loading…
Reference in New Issue