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 30f10235..4d6a3640 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 @@ -66,9 +66,10 @@ public class Connection { * Returns the status of the Connection. Can be: *
pending
: if the Connection is waiting for any user to use
- * its internal token to connect to the session, calling method Session.connect in OpenVidu Browser.active
: if the internal token of the Connection has already
* been used by some user to connect to the session, and it cannot be used
* again.Stream.streamId
+ *
+ * Stream.streamId
+ *
*/
public String getStreamId() {
return streamId;
@@ -66,70 +67,69 @@ public class Publisher {
}
/**
- * See properties of Stream object in OpenVidu Browser library to find out
- * more
+ * See properties of
+ * Stream
+ * object in OpenVidu Browser library to find out more
*/
public boolean hasVideo() {
return this.hasVideo;
}
/**
- * See properties of Stream object in OpenVidu Browser library to find out
- * more
+ * See properties of
+ *
+ * Stream
+ * object in OpenVidu Browser library to find out more
*/
public boolean hasAudio() {
return this.hasAudio;
}
/**
- * See properties of Stream object in OpenVidu Browser library to find out
- * more
+ * See properties of
+ *
+ * Stream
+ * object in OpenVidu Browser library to find out more
*/
public Boolean isAudioActive() {
return this.audioActive;
}
/**
- * See properties of Stream object in OpenVidu Browser library to find out
- * more
+ * See properties of
+ *
+ * Stream
+ * object in OpenVidu Browser library to find out more
*/
public Boolean isVideoActive() {
return this.videoActive;
}
/**
- * See properties of Stream object in OpenVidu Browser library to find out
- * more
+ * See properties of
+ *
+ * Stream
+ * object in OpenVidu Browser library to find out more
*/
public Integer getFrameRate() {
return this.frameRate;
}
/**
- * See properties of Stream object in OpenVidu Browser library to find out
- * more
+ * See properties of
+ *
+ * Stream
+ * object in OpenVidu Browser library to find out more
*/
public String getTypeOfVideo() {
return this.typeOfVideo;
}
/**
- * See properties of Stream object in OpenVidu Browser library to find out
- * more
+ * See properties of
+ *
+ * Stream
+ * object in OpenVidu Browser library to find out more
*/
public String getVideoDimensions() {
return this.videoDimensions;
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 a70f8c0d..76cec321 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
@@ -81,7 +81,7 @@ public class Recording {
* specific session recording has ended. This module will remain up and running
* as long as the session remains active.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
+ *
+ * OpenVidu Server configuration
+ * property OPENVIDU_RECORDING_PUBLIC_ACCESS
is false,
+ * this path will be secured with OpenVidu credentials
*/
public String getUrl() {
return url;