GUACAMOLE-289: Add getResource() functions to UserContext and AuthenticationProvider, allowing extensions to expose arbitrary REST resources/services.

This commit is contained in:
Michael Jumper
2017-04-29 12:34:32 -07:00
parent 0c2bcdbd81
commit 4455cbc781
16 changed files with 254 additions and 0 deletions

View File

@@ -63,6 +63,11 @@ public class HTTPHeaderAuthenticationProvider implements AuthenticationProvider
return "header";
}
@Override
public Object getResource() {
return null;
}
@Override
public AuthenticatedUser authenticateUser(Credentials credentials)
throws GuacamoleException {