Uses of Interface
org.apache.sling.servlets.post.PostResponse
-
Packages that use PostResponse Package Description org.apache.sling.servlets.post org.apache.sling.servlets.post.impl.helper org.apache.sling.servlets.post.impl.operations -
-
Uses of PostResponse in org.apache.sling.servlets.post
Classes in org.apache.sling.servlets.post that implement PostResponse Modifier and Type Class Description class
AbstractPostResponse
TheAbstractPostResponse
class provides a basic implementation of thePostResponse
interface maintaining properties to be prepared for sending the response in an internal map.class
AbstractPostResponseWrapper
Provides a simple implementation of PostResponse that can be subclassed by developers wishing to provide specialized behavior to an existing PostResponse instance.class
HtmlResponse
TheHtmlResponse
is anAbstractPostResponse
preparing the response in HTML (actually XHTML) such that it can be interpreted as a plain response in a browser or as XML response in an Ajax request.class
JSONResponse
TheJSONResponse
is anAbstractPostResponse
preparing the response in JSON.Methods in org.apache.sling.servlets.post that return PostResponse Modifier and Type Method Description PostResponse
PostResponseCreator. createPostResponse(org.apache.sling.api.SlingHttpServletRequest req)
PostResponse
PostResponseWithErrorHandling. createPostResponse(org.apache.sling.api.SlingHttpServletRequest request)
Deprecated.abstract PostResponse
AbstractPostResponseWrapper. getWrapped()
Use this method to return an instance of the class being wrapped.Methods in org.apache.sling.servlets.post with parameters of type PostResponse Modifier and Type Method Description protected abstract void
AbstractPostOperation. doRun(org.apache.sling.api.SlingHttpServletRequest request, PostResponse response, List<Modification> changes)
Deprecated.Actually performs the desired operation filling progress into thechanges
list and preparing and further information in theresponse
.protected void
AbstractSlingPostOperation. doRun(org.apache.sling.api.SlingHttpServletRequest request, PostResponse response, List<Modification> changes)
Deprecated.Implementation of theAbstractPostOperation.doRun(SlingHttpServletRequest, PostResponse, List)
method calling our ownAbstractSlingPostOperation.run(SlingHttpServletRequest, HtmlResponse, SlingPostProcessor[])
meethod with a proxy for the Sling APIHtmlResponse
.void
AbstractPostOperation. run(org.apache.sling.api.SlingHttpServletRequest request, PostResponse response, SlingPostProcessor[] processors)
Deprecated.Prepares and finalizes the actual operation.void
PostOperation. run(org.apache.sling.api.SlingHttpServletRequest request, PostResponse response, SlingPostProcessor[] processors)
Executes the operation provided by this service implementation. -
Uses of PostResponse in org.apache.sling.servlets.post.impl.helper
Classes in org.apache.sling.servlets.post.impl.helper that implement PostResponse Modifier and Type Class Description class
HtmlPostResponseProxy
Deprecated.Methods in org.apache.sling.servlets.post.impl.helper that return PostResponse Modifier and Type Method Description PostResponse
HtmlResponseProxy. getPostResponse()
Constructors in org.apache.sling.servlets.post.impl.helper with parameters of type PostResponse Constructor Description HtmlResponseProxy(PostResponse postResponse)
-
Uses of PostResponse in org.apache.sling.servlets.post.impl.operations
Methods in org.apache.sling.servlets.post.impl.operations with parameters of type PostResponse Modifier and Type Method Description protected abstract void
AbstractPostOperation. doRun(org.apache.sling.api.SlingHttpServletRequest request, PostResponse response, List<Modification> changes)
Actually performs the desired operation filling progress into thechanges
list and preparing and further information in theresponse
.protected void
CheckinOperation. doRun(org.apache.sling.api.SlingHttpServletRequest request, PostResponse response, List<Modification> changes)
protected void
CheckoutOperation. doRun(org.apache.sling.api.SlingHttpServletRequest request, PostResponse response, List<Modification> changes)
protected void
DeleteOperation. doRun(org.apache.sling.api.SlingHttpServletRequest request, PostResponse response, List<Modification> changes)
protected void
ImportOperation. doRun(org.apache.sling.api.SlingHttpServletRequest request, PostResponse response, List<Modification> changes)
protected void
ModifyOperation. doRun(org.apache.sling.api.SlingHttpServletRequest request, PostResponse response, List<Modification> changes)
protected void
RestoreOperation. doRun(org.apache.sling.api.SlingHttpServletRequest request, PostResponse response, List<Modification> changes)
protected void
StreamedUploadOperation. doRun(org.apache.sling.api.SlingHttpServletRequest request, PostResponse response, List<Modification> changes)
void
AbstractPostOperation. run(org.apache.sling.api.SlingHttpServletRequest request, PostResponse response, SlingPostProcessor[] processors)
Prepares and finalizes the actual operation.void
NopOperation. run(org.apache.sling.api.SlingHttpServletRequest request, PostResponse response, SlingPostProcessor[] processors)
-