Interface SlingPostProcessor

All Known Implementing Classes:
JakartaToJavaxPostProcessor

@Deprecated public interface SlingPostProcessor
Deprecated.
The SlingPostProcessor interface defines a service API to be implemented by service providers extending the Sling default POST servlet. Service providers may register OSGi services of this type to be used by the Sling default POST servlet to handle specific operations.

During a request the SlingPostOperation service is called with a list of registered post processors. After the operation has performed its changes but before the changes are persisted, all post processors are called.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    process(org.apache.sling.api.SlingHttpServletRequest request, List<Modification> changes)
    Deprecated.
    Process the current request.
  • Method Details

    • process

      void process(org.apache.sling.api.SlingHttpServletRequest request, List<Modification> changes) throws Exception
      Deprecated.
      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 a Modification object to the changes list.
      Parameters:
      request - The current request.
      changes - The list of changes for this request.
      Throws:
      Exception - If an error occurs.