Modifier and Type | Method and Description |
---|---|
boolean |
AuthorizationManager.canAccessResource(List<SingleConstraintMatch> mappedConstraints,
Account account,
ServletInfo servletInfo,
HttpServletRequest request,
Deployment deployment)
Tests if a user can access a given resource
|
void |
ServletDispatcher.dispatchMockRequest(HttpServletRequest request,
HttpServletResponse response)
Dispatches a mock request to the servlet container.
|
boolean |
AuthorizationManager.isUserInRole(String roleName,
Account account,
ServletInfo servletInfo,
HttpServletRequest request,
Deployment deployment)
Tests if a user is in a given role
|
TransportGuaranteeType |
AuthorizationManager.transportGuarantee(TransportGuaranteeType currentConnectionGuarantee,
TransportGuaranteeType configuredRequiredGuarantee,
HttpServletRequest request)
Determines the transport guarantee type
|
Constructor and Description |
---|
UndertowResolver(ServletRequestContext servletRequestContext,
HttpServletRequest request) |
Modifier and Type | Method and Description |
---|---|
boolean |
DefaultAuthorizationManager.canAccessResource(List<SingleConstraintMatch> constraints,
Account account,
ServletInfo servletInfo,
HttpServletRequest request,
Deployment deployment) |
boolean |
DefaultAuthorizationManager.isUserInRole(String role,
Account account,
ServletInfo servletInfo,
HttpServletRequest request,
Deployment deployment) |
void |
ApplicationListeners.servletRequestAttributeAdded(HttpServletRequest request,
String name,
Object value) |
void |
ApplicationListeners.servletRequestAttributeRemoved(HttpServletRequest request,
String name,
Object value) |
void |
ApplicationListeners.servletRequestAttributeReplaced(HttpServletRequest request,
String name,
Object value) |
TransportGuaranteeType |
DefaultAuthorizationManager.transportGuarantee(TransportGuaranteeType currentConnectionGuarantee,
TransportGuaranteeType configuredRequiredGuarentee,
HttpServletRequest request) |
Modifier and Type | Method and Description |
---|---|
void |
ServletInitialHandler.dispatchMockRequest(HttpServletRequest request,
HttpServletResponse response) |
protected void |
DefaultServlet.doDelete(HttpServletRequest req,
HttpServletResponse resp) |
protected void |
DefaultServlet.doGet(HttpServletRequest req,
HttpServletResponse resp) |
protected void |
DefaultServlet.doOptions(HttpServletRequest req,
HttpServletResponse resp) |
protected void |
DefaultServlet.doPost(HttpServletRequest req,
HttpServletResponse resp) |
protected void |
DefaultServlet.doPut(HttpServletRequest req,
HttpServletResponse resp) |
protected void |
DefaultServlet.doTrace(HttpServletRequest req,
HttpServletResponse resp) |
Modifier and Type | Class and Description |
---|---|
class |
HttpServletRequestImpl
The http servlet request implementation.
|
Modifier and Type | Method and Description |
---|---|
protected void |
WebSocketServlet.doGet(HttpServletRequest req,
HttpServletResponse resp) |
Constructor and Description |
---|
ServletWebSocketHttpExchange(HttpServletRequest request,
HttpServletResponse response,
Set<WebSocketChannel> peerConnections) |
Modifier and Type | Method and Description |
---|---|
AuthenticationStatus |
SecurityContext.authenticate(HttpServletRequest request,
HttpServletResponse response,
AuthenticationParameters parameters)
Signal to the container (programmatically trigger) that it should start or continue a web/HTTP based authentication dialog with
the caller.
|
Modifier and Type | Method and Description |
---|---|
HttpServletRequest |
HttpMessageContext.getRequest()
Returns the request object associated with the current request.
|
HttpServletRequest |
HttpMessageContextWrapper.getRequest() |
Modifier and Type | Method and Description |
---|---|
default void |
HttpAuthenticationMechanism.cleanSubject(HttpServletRequest request,
HttpServletResponse response,
HttpMessageContext httpMessageContext)
Remove mechanism specific principals and credentials from the subject and any other state the mechanism
might have used.
|
default AuthenticationStatus |
HttpAuthenticationMechanism.secureResponse(HttpServletRequest request,
HttpServletResponse response,
HttpMessageContext httpMessageContext)
Secure the response, optionally.
|
void |
HttpMessageContext.setRequest(HttpServletRequest request)
Sets the request object.
|
void |
HttpMessageContextWrapper.setRequest(HttpServletRequest request) |
AuthenticationStatus |
HttpAuthenticationMechanism.validateRequest(HttpServletRequest request,
HttpServletResponse response,
HttpMessageContext httpMessageContext)
Authenticate an HTTP request.
|
HttpMessageContext |
HttpMessageContext.withRequest(HttpServletRequest request)
Sets the request object.
|
HttpMessageContext |
HttpMessageContextWrapper.withRequest(HttpServletRequest request) |
Constructor and Description |
---|
WebResourcePermission(HttpServletRequest request)
Creates a new WebResourcePermission from the HttpServletRequest object.
|
WebUserDataPermission(HttpServletRequest request)
Creates a new WebUserDataPermission from the HttpServletRequest object.
|
Modifier and Type | Class and Description |
---|---|
class |
HttpServletRequestWrapper
Provides a convenient implementation of the HttpServletRequest interface that can be subclassed by developers wishing
to adapt the request to a Servlet.
|
Modifier and Type | Method and Description |
---|---|
protected void |
HttpServlet.doDelete(HttpServletRequest req,
HttpServletResponse resp)
Called by the server (via the
service method) to allow a servlet to handle a DELETE request. |
protected void |
HttpFilter.doFilter(HttpServletRequest req,
HttpServletResponse res,
FilterChain chain)
The
doFilter method of the Filter is called by the container each time a request/response pair is
passed through the chain due to a client request for a resource at the end of the chain. |
protected void |
HttpServlet.doGet(HttpServletRequest req,
HttpServletResponse resp)
Called by the server (via the
service method) to allow a servlet to handle a GET request. |
protected void |
HttpServlet.doHead(HttpServletRequest req,
HttpServletResponse resp)
Receives an HTTP HEAD request from the protected
service method and handles the request. |
protected void |
HttpServlet.doOptions(HttpServletRequest req,
HttpServletResponse resp)
Called by the server (via the
service method) to allow a servlet to handle a OPTIONS request. |
protected void |
HttpServlet.doPost(HttpServletRequest req,
HttpServletResponse resp)
Called by the server (via the
service method) to allow a servlet to handle a POST request. |
protected void |
HttpServlet.doPut(HttpServletRequest req,
HttpServletResponse resp)
Called by the server (via the
service method) to allow a servlet to handle a PUT request. |
protected void |
HttpServlet.doTrace(HttpServletRequest req,
HttpServletResponse resp)
Called by the server (via the
service method) to allow a servlet to handle a TRACE request. |
protected long |
HttpServlet.getLastModified(HttpServletRequest req)
Returns the time the
HttpServletRequest object was last modified, in milliseconds since midnight
January 1, 1970 GMT. |
static StringBuffer |
HttpUtils.getRequestURL(HttpServletRequest req)
Deprecated.
Reconstructs the URL the client used to make the request, using information in the
HttpServletRequest object. |
protected void |
HttpServlet.service(HttpServletRequest req,
HttpServletResponse resp)
Receives standard HTTP requests from the public
service method and dispatches them to the
do XXX methods defined in this class. |
Constructor and Description |
---|
HttpServletRequestWrapper(HttpServletRequest request)
Constructs a request object wrapping the given request.
|
Modifier and Type | Method and Description |
---|---|
void |
HttpJspPage._jspService(HttpServletRequest request,
HttpServletResponse response)
The _jspService()method corresponds to the body of the JSP page.
|
Modifier and Type | Method and Description |
---|---|
static Enumeration |
Util.getRequestLocales(HttpServletRequest request)
HttpServletRequest.getLocales() returns the server's default locale
if the request did not specify a preferred language.
|
Modifier and Type | Method and Description |
---|---|
protected void |
WebPBEConfigServlet.doGet(HttpServletRequest req,
HttpServletResponse resp) |
protected void |
WebPBEConfigServlet.doPost(HttpServletRequest req,
HttpServletResponse resp) |
Modifier and Type | Class and Description |
---|---|
class |
ResteasyHttpServletRequestWrapper
ResteasyHttpServletRequestWrapper is introduced to support the use of
RequestDispatcher.forward() and RequestDispatcher.include(), which need
to be able to retrieve the orginal HttpServletRequest.
|
Modifier and Type | Method and Description |
---|---|
HttpServletRequest |
ResteasyHttpServletRequestWrapper.getHttpServletRequest() |
Constructor and Description |
---|
ResteasyHttpServletRequestWrapper(HttpServletRequest request,
HttpServletRequest proxy) |
Modifier and Type | Method and Description |
---|---|
protected void |
JSAPIServlet.service(HttpServletRequest req,
HttpServletResponse resp) |
void |
JSAPIWriter.writeJavaScript(String base,
HttpServletRequest req,
HttpServletResponse resp,
Map<String,ServiceRegistry> serviceRegistries) |
Modifier and Type | Field and Description |
---|---|
protected HttpServletRequest |
HttpServletInputMessage.request |
Constructor and Description |
---|
HttpServletInputMessage(HttpServletRequest request,
HttpServletResponse servletResponse,
ServletContext servletContext,
HttpResponse httpResponse,
ResteasyHttpHeaders httpHeaders,
ResteasyUriInfo uri,
String httpMethod,
SynchronousDispatcher dispatcher) |
Servlet3AsyncHttpRequest(HttpServletRequest httpServletRequest,
HttpServletResponse response,
ServletContext servletContext,
HttpResponse httpResponse,
ResteasyHttpHeaders httpHeaders,
ResteasyUriInfo uriInfo,
String s,
SynchronousDispatcher synchronousDispatcher) |
ServletSecurityContext(HttpServletRequest request) |
Modifier and Type | Class and Description |
---|---|
class |
HttpServletRequestDelegate |
Modifier and Type | Field and Description |
---|---|
protected HttpServletRequest |
HttpServletRequestDelegate.delegate |
Constructor and Description |
---|
HttpServletRequestDelegate(HttpServletRequest delegate) |
Modifier and Type | Method and Description |
---|---|
org.jboss.security.xacml.interfaces.RequestContext |
WebXACMLUtil.createXACMLRequest(HttpServletRequest request,
RoleGroup callerRoles) |
Modifier and Type | Method and Description |
---|---|
default void |
HttpConversationContext.activateLazily(Consumer<HttpServletRequest> transientConversationInitializationCallback)
Activate the conversation context lazily - neither determine the conversation id, nor initialize the context.
|
Modifier and Type | Class and Description |
---|---|
class |
SPFormAuthenticationRequestWrapper
HttpServletRequest wrapper which changes behavior of
ServletRequest.getParameter . |
Modifier and Type | Method and Description |
---|---|
static HttpServletRequest |
SPFormAuthrenticationRequestUtil.wrapRequest(HttpServerExchange exchange)
Wrap request into
SPFormAuthenticationRequestWrapper . |
Modifier and Type | Method and Description |
---|---|
protected HttpServletRequestWrapper |
SPFormAuthenticationMechanism.bufferServletRequestInputStream(HttpServletRequest originalRequest,
byte[] bytes) |
protected String |
IdentityURLProviderHandler.cookieValue(HttpServletRequest request) |
protected String |
SPFormAuthenticationMechanism.getSAMLVersion(HttpServletRequest request) |
AuthenticationMechanism.AuthenticationMechanismOutcome |
SPFormAuthenticationMechanism.handleSAML11UnsolicitedResponse(HttpServletRequest request,
HttpServletResponse response,
SecurityContext securityContext) |
protected boolean |
SPFormAuthenticationMechanism.isAjaxRequest(HttpServletRequest request) |
protected boolean |
SPFormAuthenticationMechanism.isGlobalLogout(HttpServletRequest request) |
protected boolean |
SPFormAuthenticationMechanism.matchRequest(HttpServletRequest request) |
protected void |
IdentityURLProviderHandler.redirectToChosenPage(HttpServletRequest request,
HttpServletResponse response) |
Constructor and Description |
---|
SPFormAuthenticationRequestWrapper(HttpServletRequest request,
FormData formData,
byte[] bytes) |
Modifier and Type | Method and Description |
---|---|
boolean |
ServiceProviderSAMLWorkflow.isGlobalLogout(HttpServletRequest request)
Indicates if the current request is a GlobalLogout request.
|
boolean |
ServiceProviderSAMLWorkflow.isLocalLogoutRequest(HttpServletRequest request)
Verify whether a
HttpServletRequest is for Local Logout |
void |
ServiceProviderSAMLWorkflow.sendToLogoutPage(HttpServletRequest request,
HttpServletResponse response,
HttpSession session,
ServletContext servletContext,
String logOutPage) |
boolean |
ServiceProviderSAMLWorkflow.validate(HttpServletRequest request)
Perform validation of the request object
|
Modifier and Type | Field and Description |
---|---|
protected HttpServletRequest |
HTTPContext.request |
Modifier and Type | Method and Description |
---|---|
HttpServletRequest |
HTTPContext.getRequest() |
Modifier and Type | Method and Description |
---|---|
HTTPContext |
HTTPContext.setRequest(HttpServletRequest req) |
Constructor and Description |
---|
HTTPContext(HttpServletRequest httpReq,
HttpServletResponse httpResp,
ServletContext sctx) |
Modifier and Type | Method and Description |
---|---|
protected void |
IDPFilter.cleanUpSessionNote(HttpServletRequest request) |
protected void |
IDPFilter.handleSAML11UnsolicitedResponse(HttpServletRequest request,
HttpServletResponse response) |
Principal |
SPFilter.handleSAMLResponse(HttpServletRequest request,
ResponseType responseType)
Handle the SAMLResponse from the IDP
|
protected void |
IDPFilter.processSAMLRequestMessage(HttpServletRequest request,
HttpServletResponse response,
RequestAbstractType requestType,
boolean ignoreSignatureValidation) |
protected void |
IDPFilter.processSAMLResponseMessage(HttpServletRequest request,
HttpServletResponse response) |
protected boolean |
SPFilter.validate(HttpServletRequest request) |
Modifier and Type | Method and Description |
---|---|
static HttpServletRequest |
BaseSAML2Handler.getHttpRequest(SAML2HandlerRequest request) |
Modifier and Type | Method and Description |
---|---|
protected void |
IDPServlet.doGet(HttpServletRequest req,
HttpServletResponse resp) |
protected void |
IDPLoginServlet.doPost(HttpServletRequest request,
HttpServletResponse response) |
protected void |
IDPServlet.doPost(HttpServletRequest request,
HttpServletResponse response) |
void |
IDPLoginServlet.testPost(HttpServletRequest request,
HttpServletResponse response) |
void |
IDPServlet.testPost(HttpServletRequest request,
HttpServletResponse response) |
Modifier and Type | Method and Description |
---|---|
protected void |
MetadataServlet.doGet(HttpServletRequest req,
HttpServletResponse resp) |
protected void |
MetadataServletSP.doGet(HttpServletRequest req,
HttpServletResponse resp) |
protected void |
CircleOfTrustServlet.doPost(HttpServletRequest req,
HttpServletResponse resp) |
protected void |
SOAPSAMLXACMLServlet.service(HttpServletRequest req,
HttpServletResponse resp) |
Constructor and Description |
---|
IDPWebRequestUtil(HttpServletRequest request,
IDPType idp,
TrustKeyManager keym) |
Copyright © 2021 JBoss by Red Hat. All rights reserved.