mike-jumper commented on code in PR #677: URL: https://github.com/apache/guacamole-client/pull/677#discussion_r1735098005
########## extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-base/src/main/java/org/apache/guacamole/auth/jdbc/tunnel/AbstractGuacamoleTunnelService.java: ########## @@ -81,6 +82,51 @@ public abstract class AbstractGuacamoleTunnelService implements GuacamoleTunnelS */ private final Logger logger = LoggerFactory.getLogger(AbstractGuacamoleTunnelService.class); + /** + * The token that contains the date the connection was started. + */ + private final String JDBC_DATE_TOKEN = "GUAC_JDBC_STARTDATE"; + + /** + * The format of the date in the date token. + */ + private final String JDBC_DATE_TOKEN_FORMAT = "yyyyMMdd"; + + /** + * The token that contains the start time of the connection. + */ + private final String JDBC_TIME_TOKEN = "GUAC_JDBC_STARTTIME"; + + /** + * The format of the time in the time token. + */ + private final String JDBC_TIME_TOKEN_FORMAT = "HHmmss"; + + /** + * The token that contains the connection name. + */ + private final String JDBC_CONNECTION_NAME_TOKEN = "GUAC_JDBC_CONNECTION_NAME"; + + /** + * The token that contains the connection identifier. + */ + private final String JDBC_CONNECTION_ID_TOKEN = "GUAC_JDBC_CONNECTION_ID"; + + /** + * The token that contains the hostname configured in the connection parameters. + */ + private final String JDBC_CONNECTION_HOSTNAME_TOKEN = "GUAC_JDBC_HOSTNAME"; + + /** + * The name of the parameter containing the hostname in the configuration. + */ + private final String JDBC_CONNECTION_HOSTNAME_TOKEN_PARAMTER = "hostname"; Review Comment: `JDBC_CONNECTION_HOSTNAME_TOKEN_PARAMETER`* -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@guacamole.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org