GUACAMOLE-393: Add session invalidation hooks to AuthenticatedUser.

This commit is contained in:
Michael Jumper
2017-05-29 19:03:42 -07:00
parent b90a989463
commit c20457f89b
4 changed files with 20 additions and 0 deletions

View File

@@ -136,4 +136,9 @@ public abstract class RemoteAuthenticatedUser implements AuthenticatedUser {
return authenticationProvider;
}
@Override
public void invalidate() {
// Nothing to invalidate
}
}