Class ValidationPostProcessor
java.lang.Object
org.apache.sling.validation.impl.postprocessor.ValidationPostProcessor
- All Implemented Interfaces:
SlingPostProcessor
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
activate
(ValidationPostProcessorConfiguration configuration) void
process
(SlingHttpServletRequest request, List<Modification> changes) Process the current request.
-
Field Details
-
validationService
-
-
Constructor Details
-
ValidationPostProcessor
public ValidationPostProcessor()
-
-
Method Details
-
activate
-
process
Description copied from interface:SlingPostProcessor
Process the current request. The post processor can inspect the list of changes and perform additional changes. If the processor performs a change it should make the change and add aModification
object to the changes list.- Specified by:
process
in interfaceSlingPostProcessor
- Parameters:
request
- The current request.changes
- The list of changes for this request.- Throws:
Exception
- If an error occurs.
-