From ce90918274f91f846471907912783397429ed032 Mon Sep 17 00:00:00 2001 From: pabloFuente Date: Sun, 5 Apr 2020 22:05:17 +0200 Subject: [PATCH] openvidu-java-client: JavaDoc absolute links --- .../io/openvidu/java/client/Connection.java | 4 ++-- .../openvidu/java/client/KurentoOptions.java | 10 +++++----- .../io/openvidu/java/client/Publisher.java | 20 +++++++++---------- .../io/openvidu/java/client/Recording.java | 2 +- .../openvidu/java/client/RecordingLayout.java | 2 +- .../java/client/RecordingProperties.java | 4 ++-- 6 files changed, 21 insertions(+), 21 deletions(-) diff --git a/openvidu-java-client/src/main/java/io/openvidu/java/client/Connection.java b/openvidu-java-client/src/main/java/io/openvidu/java/client/Connection.java index 07725648..c962c03a 100644 --- a/openvidu-java-client/src/main/java/io/openvidu/java/client/Connection.java +++ b/openvidu-java-client/src/main/java/io/openvidu/java/client/Connection.java @@ -85,7 +85,7 @@ public class Connection { } /** - * PRO @@ -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 - * Session.connect in OpenVidu Browser */ public String getClientData() { diff --git a/openvidu-java-client/src/main/java/io/openvidu/java/client/KurentoOptions.java b/openvidu-java-client/src/main/java/io/openvidu/java/client/KurentoOptions.java index 22f9bedd..0bec883f 100644 --- a/openvidu-java-client/src/main/java/io/openvidu/java/client/KurentoOptions.java +++ b/openvidu-java-client/src/main/java/io/openvidu/java/client/KurentoOptions.java @@ -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 OpenVidu Server configuration (parameter * openvidu.streams.video.max-recv-bandwidth) for every incoming * stream of the user owning the token.
@@ -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 OpenVidu Server configuration (parameter * openvidu.streams.video.min-recv-bandwidth) 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 OpenVidu Server configuration (parameter * openvidu.streams.video.max-send-bandwidth) for every outgoing * stream of the user owning the token.
@@ -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 OpenVidu Server configuration (parameter * openvidu.streams.video.min-send-bandwidth) 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 - * Voice and + * Voice and * video filters */ public String[] getAllowedFilters() { diff --git a/openvidu-java-client/src/main/java/io/openvidu/java/client/Publisher.java b/openvidu-java-client/src/main/java/io/openvidu/java/client/Publisher.java index 184760c8..89030b51 100644 --- a/openvidu-java-client/src/main/java/io/openvidu/java/client/Publisher.java +++ b/openvidu-java-client/src/main/java/io/openvidu/java/client/Publisher.java @@ -25,7 +25,7 @@ import com.google.gson.JsonObject; * *
* This is a backend representation of a published media stream (see - * OpenVidu + * OpenVidu * Browser Stream class). */ public class Publisher { @@ -65,10 +65,10 @@ public class Publisher { /** * Returns the unique identifier of the - * Stream associated to this Publisher. Each Publisher is paired * with only one Stream, so you can identify each Publisher by its - * Stream.streamId */ public String getStreamId() { @@ -84,7 +84,7 @@ public class Publisher { } /** - * See properties of Stream object in OpenVidu Browser library to find out more */ public boolean hasVideo() { @@ -92,7 +92,7 @@ public class Publisher { } /** - * See properties of Stream object in OpenVidu Browser library to find out more */ public boolean hasAudio() { @@ -100,7 +100,7 @@ public class Publisher { } /** - * See properties of Stream object in OpenVidu Browser library to find out more */ public Boolean isAudioActive() { @@ -108,7 +108,7 @@ public class Publisher { } /** - * See properties of Stream object in OpenVidu Browser library to find out more */ public Boolean isVideoActive() { @@ -116,7 +116,7 @@ public class Publisher { } /** - * See properties of Stream object in OpenVidu Browser library to find out more */ public Integer getFrameRate() { @@ -124,7 +124,7 @@ public class Publisher { } /** - * See properties of Stream object in OpenVidu Browser library to find out more */ public String getTypeOfVideo() { @@ -132,7 +132,7 @@ public class Publisher { } /** - * See properties of Stream object in OpenVidu Browser library to find out more */ public String getVideoDimensions() { diff --git a/openvidu-java-client/src/main/java/io/openvidu/java/client/Recording.java b/openvidu-java-client/src/main/java/io/openvidu/java/client/Recording.java index a61ee0d6..e864f036 100644 --- a/openvidu-java-client/src/main/java/io/openvidu/java/client/Recording.java +++ b/openvidu-java-client/src/main/java/io/openvidu/java/client/Recording.java @@ -195,7 +195,7 @@ public class Recording { /** * URL of the recording. You can access the file from there. It is * null until recording reaches "ready" or "failed" status. If - * OpenVidu Server configuration property * openvidu.recording.public-access is false, this path will be * secured with OpenVidu credentials diff --git a/openvidu-java-client/src/main/java/io/openvidu/java/client/RecordingLayout.java b/openvidu-java-client/src/main/java/io/openvidu/java/client/RecordingLayout.java index b4e5cda2..998182dc 100644 --- a/openvidu-java-client/src/main/java/io/openvidu/java/client/RecordingLayout.java +++ b/openvidu-java-client/src/main/java/io/openvidu/java/client/RecordingLayout.java @@ -47,7 +47,7 @@ public enum RecordingLayout { /** * Use your own custom recording layout. See - * Custom recording layouts to learn more */ CUSTOM diff --git a/openvidu-java-client/src/main/java/io/openvidu/java/client/RecordingProperties.java b/openvidu-java-client/src/main/java/io/openvidu/java/client/RecordingProperties.java index 79ae9f9a..d8a47784 100644 --- a/openvidu-java-client/src/main/java/io/openvidu/java/client/RecordingProperties.java +++ b/openvidu-java-client/src/main/java/io/openvidu/java/client/RecordingProperties.java @@ -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}.
- * See Custom recording layouts 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.
- * See Custom recording layouts to learn more */ public String customLayout() {