GUACAMOLE-708: Add and update JavaDoc comments.

This commit is contained in:
Virtually Nick
2020-06-20 08:09:33 -04:00
parent 2888d6a340
commit 76f7379f46
3 changed files with 13 additions and 2 deletions

View File

@@ -241,6 +241,11 @@ public class MySQLGuacamoleProperties {
};
/**
* Wether or not to automatically create accounts in the MySQL database for
* users who successfully authenticate through another extension. By
* default users will not be automatically created.
*/
public static final BooleanGuacamoleProperty MYSQL_AUTO_CREATE_ACCOUNTS =
new BooleanGuacamoleProperty() {

View File

@@ -234,8 +234,9 @@ public class PostgreSQLGuacamoleProperties {
};
/**
* Whether or not the PostgreSQL extension should automatically add database
* entries for users who are granted access through other extensions.
* Wether or not to automatically create accounts in the PostgreSQL database
* for users who successfully authenticate through another extension. By
* default users will not be automatically created.
*/
public static final BooleanGuacamoleProperty POSTGRESQL_AUTO_CREATE_ACCOUNTS =
new BooleanGuacamoleProperty() {

View File

@@ -194,6 +194,11 @@ public class SQLServerGuacamoleProperties {
};
/**
* Wether or not to automatically create accounts in the SQL Server database
* for users who successfully authenticate through another extension. By
* default users will not be automatically created.
*/
public static final BooleanGuacamoleProperty SQLSERVER_AUTO_CREATE_ACCOUNTS =
new BooleanGuacamoleProperty() {