mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
GUAC-1451: Publicly expose token names.
This commit is contained in:
@@ -37,24 +37,24 @@ public class StandardTokens {
|
|||||||
/**
|
/**
|
||||||
* The name of the username token added via addStandardTokens().
|
* The name of the username token added via addStandardTokens().
|
||||||
*/
|
*/
|
||||||
private static final String USERNAME_TOKEN = "GUAC_USERNAME";
|
public static final String USERNAME_TOKEN = "GUAC_USERNAME";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the password token added via addStandardTokens().
|
* The name of the password token added via addStandardTokens().
|
||||||
*/
|
*/
|
||||||
private static final String PASSWORD_TOKEN = "GUAC_PASSWORD";
|
public static final String PASSWORD_TOKEN = "GUAC_PASSWORD";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the date token (server-local time) added via
|
* The name of the date token (server-local time) added via
|
||||||
* addStandardTokens().
|
* addStandardTokens().
|
||||||
*/
|
*/
|
||||||
private static final String DATE_TOKEN = "GUAC_DATE";
|
public static final String DATE_TOKEN = "GUAC_DATE";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the time token (server-local time) added via
|
* The name of the time token (server-local time) added via
|
||||||
* addStandardTokens().
|
* addStandardTokens().
|
||||||
*/
|
*/
|
||||||
private static final String TIME_TOKEN = "GUAC_TIME";
|
public static final String TIME_TOKEN = "GUAC_TIME";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The date format that should be used for the date token. This format must
|
* The date format that should be used for the date token. This format must
|
||||||
|
Reference in New Issue
Block a user