GUAC-586: Associate unique identifier with each AuthenticationProvider.

This commit is contained in:
Michael Jumper
2015-08-27 15:34:12 -07:00
parent f190f7f1a7
commit b0ac5d22ff
8 changed files with 75 additions and 13 deletions

View File

@@ -192,6 +192,11 @@ public class MySQLAuthenticationProvider implements AuthenticationProvider {
}
@Override
public String getIdentifier() {
return "mysql";
}
@Override
public AuthenticatedUser authenticateUser(Credentials credentials)
throws GuacamoleException {

View File

@@ -192,6 +192,11 @@ public class PostgreSQLAuthenticationProvider implements AuthenticationProvider
}
@Override
public String getIdentifier() {
return "postgresql";
}
@Override
public AuthenticatedUser authenticateUser(Credentials credentials)
throws GuacamoleException {