Methods Summary |
---|
public java.lang.String | getRemoteUser()Gets the user id
return request.getRemoteUser();
|
public javax.servlet.http.HttpServletRequest | getRequest()Gets the request.
throw new UnsupportedOperationException("Usage of getRequest() method is deprecadet and not supported for this implementation");
|
public java.security.Principal | getUserPrincipal()Gets the user principal
return request.getUserPrincipal();
|
public boolean | isRequestSecure()Is the request using https?
return request.isSecure();
|
public boolean | isUserInRole(java.lang.String role)True if the user is in the given role
return request.isUserInRole(role);
|