diff --git a/openvidu-java-client/generate-docs.sh b/openvidu-java-client/generate-docs.sh index c9ffe075..9666d3c2 100755 --- a/openvidu-java-client/generate-docs.sh +++ b/openvidu-java-client/generate-docs.sh @@ -6,7 +6,7 @@ if [[ -z "$BASEHREF_VERSION" ]]; then fi # Replace version from "stable" to the specified one in all Javadoc links -grep -rl 'href="/en/stable/' ./src | xargs sed -i -e 's|href="/en/stable/|href="/en/'${BASEHREF_VERSION}'/|g' +grep -rl '"/en/stable/' ./src | xargs sed -i -e 's|"/en/stable/|"/en/'${BASEHREF_VERSION}'/|g' # Generate JavaDoc mvn javadoc:javadoc @@ -14,7 +14,7 @@ rm -rf ../../openvidu.io/api/openvidu-java-client/* cp -R ./target/site/apidocs/. ../../openvidu.io-docs/docs/api/openvidu-java-client # Return links to "stable" version -grep -rl 'href="/en/'${BASEHREF_VERSION}'/' ./src | xargs sed -i -e 's|href="/en/'${BASEHREF_VERSION}'/|href="/en/stable/|g' +grep -rl '"/en/'${BASEHREF_VERSION}'/' ./src | xargs sed -i -e 's|"/en/'${BASEHREF_VERSION}'/|"/en/stable/|g' # Add favicon to index.html sed -i -e 's/
//g' ../../openvidu.io-docs/docs/api/openvidu-java-client/index.html 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 2dad106a..07725648 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,10 +85,10 @@ public class Connection { } /** - * PRO + * PRO * * Returns the geo location of the connection, with the following format: *"CITY, COUNTRY"
("unknown"
if it wasn't possible to
@@ -117,8 +117,9 @@ 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
+ * is set with second parameter of method
+ * Session.connect in OpenVidu Browser
*/
public String getClientData() {
return clientData;
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 30af374f..7b0d322a 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
@@ -107,8 +107,8 @@ 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. 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. openvidu.streams.video.min-send-bandwidth
) for every outgoing
* stream of the user owning the token.
@@ -166,8 +166,8 @@ public class KurentoOptions {
/**
* Defines the names of the filters the user owning the token will be able to
* apply. See
- * Voice and video filters
+ * Voice and
+ * video filters
*/
public String[] getAllowedFilters() {
return allowedFilters;
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 fc9f1493..a61ee0d6 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,8 +195,8 @@ 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 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 1af2ec3a..b4e5cda2 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
@@ -46,8 +46,8 @@ public enum RecordingLayout {
HORIZONTAL_PRESENTATION,
/**
- * 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 260e56c9..79ae9f9a 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,8 +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}.