Add updateUserContext() function.

This commit is contained in:
Michael Jumper
2013-08-07 13:22:35 -07:00
parent 4550a73db1
commit 11bc2d7c68
3 changed files with 39 additions and 0 deletions

View File

@@ -179,4 +179,13 @@ public class MySQLAuthenticationProvider implements AuthenticationProvider {
);
} // end of constructor
@Override
public UserContext updateUserContext(UserContext context,
Credentials credentials) throws GuacamoleException {
// No need to update the context
return context;
}
}