Uses of Class
org.apache.sling.servlets.post.Modification
-
Packages that use Modification Package Description org.apache.sling.servlets.post org.apache.sling.servlets.post.impl.helper org.apache.sling.servlets.post.impl.operations -
-
Uses of Modification in org.apache.sling.servlets.post
Methods in org.apache.sling.servlets.post that return Modification Modifier and Type Method Description protected static Modification
Modification. onChange(ModificationType type, String source)
protected static Modification
Modification. onChange(ModificationType type, String source, String dest)
static Modification
Modification. onCheckin(String path)
static Modification
Modification. onCheckout(String path)
static Modification
Modification. onCopied(String srcPath, String dstPath)
Records a 'copied' change.static Modification
Modification. onCreated(String path)
Records a 'created' changestatic Modification
Modification. onDeleted(String path)
Records a 'deleted' changestatic Modification
Modification. onModified(String path)
Records a 'modified' changestatic Modification
Modification. onMoved(String srcPath, String dstPath)
Records a 'moved' change.static Modification
Modification. onOrder(String orderedPath, String beforeSibling)
Records a 'order' change.static Modification
Modification. onRestore(String path, String version)
Method parameters in org.apache.sling.servlets.post with type arguments of type Modification Modifier and Type Method Description protected void
AbstractPostOperation. checkoutIfNecessary(javax.jcr.Node node, List<Modification> changes, VersioningConfiguration versioningConfiguration)
Deprecated.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 abstract void
AbstractSlingPostOperation. doRun(org.apache.sling.api.SlingHttpServletRequest request, org.apache.sling.api.servlets.HtmlResponse response, List<Modification> changes)
Deprecated.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
.protected void
AbstractPostOperation. orderNode(org.apache.sling.api.SlingHttpServletRequest request, javax.jcr.Item item, List<Modification> changes)
Deprecated.Orders the given node according to the specified command.void
SlingPostProcessor. process(org.apache.sling.api.SlingHttpServletRequest request, List<Modification> changes)
Process the current request. -
Uses of Modification in org.apache.sling.servlets.post.impl.helper
Methods in org.apache.sling.servlets.post.impl.helper that return Modification Modifier and Type Method Description Modification
JCRSupport. storeAsReference(org.apache.sling.api.resource.Resource resource, Object node, String name, String[] values, int type, boolean multiValued)
Stores property value(s) as reference(s).Modification
JCRSupportImpl. storeAsReference(Object n, String name, String[] values, int type, boolean multiValued)
Method parameters in org.apache.sling.servlets.post.impl.helper with type arguments of type Modification Modifier and Type Method Description void
JCRSupport. checkoutIfNecessary(org.apache.sling.api.resource.Resource rsrc, List<Modification> changes, VersioningConfiguration versioningConfiguration)
void
JCRSupportImpl. checkoutIfNecessary(org.apache.sling.api.resource.Resource resource, List<Modification> changes, VersioningConfiguration versioningConfiguration)
void
SlingFileUploadHandler. setFile(org.apache.sling.api.resource.Resource parent, RequestProperty prop, List<Modification> changes)
Uses the file(s) in the request parameter for creation of new nodes.org.apache.sling.api.resource.Resource
StreamedChunk. store(org.apache.sling.api.resource.Resource fileResource, List<Modification> changes)
Store the chunk in a file resource under a jcr:content sub node.Constructor parameters in org.apache.sling.servlets.post.impl.helper with type arguments of type Modification Constructor Description SlingPropertyValueHandler(DateParser dateParser, JCRSupport jcrSupport, List<Modification> changes)
Constructs a property value handler -
Uses of Modification in org.apache.sling.servlets.post.impl.operations
Method parameters in org.apache.sling.servlets.post.impl.operations with type arguments of type Modification 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)
protected org.apache.sling.api.resource.Resource
CopyOperation. execute(List<Modification> changes, org.apache.sling.api.resource.Resource source, String destParent, String destName, VersioningConfiguration versioningConfiguration)
protected org.apache.sling.api.resource.Resource
MoveOperation. execute(List<Modification> changes, org.apache.sling.api.resource.Resource source, String destParent, String destName, VersioningConfiguration versioningConfiguration)
protected void
AbstractPostOperation. orderResource(org.apache.sling.api.SlingHttpServletRequest request, org.apache.sling.api.resource.Resource resource, List<Modification> changes)
Orders the given resource according to the specified command.
-