Uses of Interface
org.apache.sling.api.SlingHttpServletResponse
-
Packages that use SlingHttpServletResponse Package Description org.apache.sling.api.scripting org.apache.sling.api.servlets org.apache.sling.api.wrappers -
-
Uses of SlingHttpServletResponse in org.apache.sling.api.scripting
Methods in org.apache.sling.api.scripting that return SlingHttpServletResponse Modifier and Type Method Description @Nullable SlingHttpServletResponseSlingBindings. getResponse()@NotNull SlingHttpServletResponseSlingScriptHelper. getResponse()Returns theSlingHttpServletResponserepresenting the output of the request.Methods in org.apache.sling.api.scripting with parameters of type SlingHttpServletResponse Modifier and Type Method Description voidSlingBindings. setResponse(SlingHttpServletResponse response) -
Uses of SlingHttpServletResponse in org.apache.sling.api.servlets
Methods in org.apache.sling.api.servlets with parameters of type SlingHttpServletResponse Modifier and Type Method Description protected voidSlingAllMethodsServlet. doDelete(@NotNull SlingHttpServletRequest request, @NotNull SlingHttpServletResponse response)Called by theSlingAllMethodsServlet.mayService(SlingHttpServletRequest, SlingHttpServletResponse)method to handle an HTTP DELETE request.protected voidSlingSafeMethodsServlet. doGeneric(@NotNull SlingHttpServletRequest request, @NotNull SlingHttpServletResponse response)Called by theSlingSafeMethodsServlet.service(SlingHttpServletRequest, SlingHttpServletResponse)method to handle a request for an HTTP method, which is not known and handled by this class or its extension.protected voidSlingSafeMethodsServlet. doGet(@NotNull SlingHttpServletRequest request, @NotNull SlingHttpServletResponse response)Called by theSlingSafeMethodsServlet.mayService(SlingHttpServletRequest, SlingHttpServletResponse)method to handle an HTTP GET request.protected voidSlingSafeMethodsServlet. doHead(@NotNull SlingHttpServletRequest request, @NotNull SlingHttpServletResponse response)Handles the HEAD method.protected voidSlingSafeMethodsServlet. doOptions(@NotNull SlingHttpServletRequest request, @NotNull SlingHttpServletResponse response)Handles the OPTIONS method by setting the HTTPAllowheader on the response depending on the methods declared in this class.protected voidSlingAllMethodsServlet. doPost(@NotNull SlingHttpServletRequest request, @NotNull SlingHttpServletResponse response)Called by theSlingAllMethodsServlet.mayService(SlingHttpServletRequest, SlingHttpServletResponse)method to handle an HTTP POST request.protected voidSlingAllMethodsServlet. doPut(@NotNull SlingHttpServletRequest request, @NotNull SlingHttpServletResponse response)Called by theSlingAllMethodsServlet.mayService(SlingHttpServletRequest, SlingHttpServletResponse)method to handle an HTTP PUT request.protected voidSlingSafeMethodsServlet. doTrace(@NotNull SlingHttpServletRequest request, @NotNull SlingHttpServletResponse response)Handles the TRACE method by just returning the list of all header values in the response body.protected voidSlingSafeMethodsServlet. handleMethodNotImplemented(@NotNull SlingHttpServletRequest request, @NotNull SlingHttpServletResponse response)Helper method which causes an appropriate HTTP response to be sent for an unhandled HTTP request method.protected booleanSlingAllMethodsServlet. mayService(@NotNull SlingHttpServletRequest request, @NotNull SlingHttpServletResponse response)Tries to handle the request by calling a Java method implemented for the respective HTTP request method.protected booleanSlingSafeMethodsServlet. mayService(@NotNull SlingHttpServletRequest request, @NotNull SlingHttpServletResponse response)Tries to handle the request by calling a Java method implemented for the respective HTTP request method.protected voidSlingSafeMethodsServlet. service(@NotNull SlingHttpServletRequest request, @NotNull SlingHttpServletResponse response)Called by theSlingSafeMethodsServlet.service(ServletRequest, ServletResponse)method to handle the HTTP request. -
Uses of SlingHttpServletResponse in org.apache.sling.api.wrappers
Classes in org.apache.sling.api.wrappers that implement SlingHttpServletResponse Modifier and Type Class Description classSlingHttpServletResponseWrapperTheSlingHttpServletResponseWrapperclass is a default wrapper class around aSlingHttpServletResponsewhich may be extended to amend the functionality of the original response object.Methods in org.apache.sling.api.wrappers that return SlingHttpServletResponse Modifier and Type Method Description SlingHttpServletResponseSlingHttpServletResponseWrapper. getSlingResponse()Return the originalSlingHttpServletResponseobject wrapped by this.Constructors in org.apache.sling.api.wrappers with parameters of type SlingHttpServletResponse Constructor Description SlingHttpServletResponseWrapper(SlingHttpServletResponse wrappedResponse)Create a wrapper for the supplied wrappedRequest
-