GUACAMOLE-102: Corrections to comments in ConnectionModel class.

This commit is contained in:
Nick Couchman
2017-06-05 22:29:28 -04:00
parent 874b29bae3
commit 91f7a3e8e9

View File

@@ -56,8 +56,8 @@ public class ConnectionModel extends ChildObjectModel {
/** /**
* The weight of the connection for the purposes of calculating * The weight of the connection for the purposes of calculating
* WRR algorithm. null indicates nothing has been set, -1 indicates * WLC algorithm. null indicates nothing has been set, and anything less
* the system is unavailable. * than 1 eliminates the system from being used for connections.
*/ */
private Integer connectionWeight; private Integer connectionWeight;
@@ -187,10 +187,7 @@ public class ConnectionModel extends ChildObjectModel {
* weighted algorithms. * weighted algorithms.
* *
* @return * @return
* The connection weight as an int. If the weight is * The connection weight as an Integer.
* null a default weight of 1 is returned. Zero and
* negative numbers are used to indicate the system is
* unavailable.
*/ */
public Integer getConnectionWeight() { public Integer getConnectionWeight() {
return connectionWeight; return connectionWeight;