GUAC-1451: Publicly expose token names.

This commit is contained in:
Michael Jumper
2016-01-22 11:48:26 -08:00
parent 7789fe89d7
commit 6647cdf12d

View File

@@ -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