public interface User
Please consult the documentation for a detailed explanation.
| Modifier and Type | Method and Description | 
|---|---|
User | 
clearCache()
Deprecated.  
 | 
default User | 
isAuthorised(String authority,
            Handler<AsyncResult<Boolean>> resultHandler)
Deprecated. 
 
 | 
User | 
isAuthorized(String authority,
            Handler<AsyncResult<Boolean>> resultHandler)
Deprecated.  
 | 
JsonObject | 
principal()
Get the underlying principal for the User. 
 | 
void | 
setAuthProvider(AuthProvider authProvider)
Deprecated.  
 | 
@Deprecated User isAuthorized(String authority, Handler<AsyncResult<Boolean>> resultHandler)
authority - the authority - what this really means is determined by the specific implementation. It might
                   represent a permission to access a resource e.g. `printers:printer34` or it might represent
                   authority to a role in a roles based model, e.g. `role:admin`.resultHandler - handler that will be called with an AsyncResult containing the value
                       `true` if the they has the authority or `false` otherwise.@Deprecated default User isAuthorised(String authority, Handler<AsyncResult<Boolean>> resultHandler)
isAuthorized(String, Handler)@Deprecated User clearCache()
JsonObject principal()
   {
     "username", "tim"
   }
 @Deprecated void setAuthProvider(AuthProvider authProvider)
authProvider - the AuthProvider - this must be the same type of AuthProvider that originally created the UserCopyright © 2020 Eclipse. All rights reserved.