All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.sling.servlets.post.PostOperation Maven / Gradle / Ivy

/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.apache.sling.servlets.post;

import org.apache.sling.api.SlingHttpServletRequest;

/**
 * The PostOperation interface defines the service API to be
 * implemented by service providers extending the Sling POST servlet. Service
 * providers may register OSGi services of this type to be used by the Sling
 * default POST servlet to handle specific operations.
 * 

* The PostOperation service must be registered with a * {@link #PROP_OPERATION_NAME} registration property giving the name(s) of the * operations supported by the service. The names will be used to find the * actual operation from the {@link SlingPostConstants#RP_OPERATION * :operation} request parameter. *

* The Sling POST servlet itself provides various operations (see the * OPERATION_ constants in the {@link SlingPostConstants} * interface.These names should not be used by SlingPostOperation * service providers. *

* This interface replaces the old {@link SlingPostOperation} service interface * adding support for extensible responses by means of the {@link PostResponse} * interface as well as operation postprocessing. *

* Implementors of this interface are advised to extend the * {@link AbstractPostOperation} class to benefit from various precossings * implemented by that abstract class. */ public interface PostOperation { /** * The name of the Sling POST operation service. */ public static final String SERVICE_NAME = "org.apache.sling.servlets.post.PostOperation"; /** * The name of the service registration property indicating the name(s) of * the operation provided by the operation implementation. The value of this * service property must be a single String or an array or * java.util.Collection of Strings. If multiple strings are * defined, the service is registered for all operation names. */ public static final String PROP_OPERATION_NAME = "sling.post.operation"; /** * Executes the operation provided by this service implementation. This * method is called by the Sling POST servlet. * * @param request The SlingHttpServletRequest object providing * the request input for the operation. * @param response The HtmlResponse into which the operation * steps should be recorded. * @param processors The {@link SlingPostProcessor} services to be called * after applying the operation. This may be null if * there are none. * @throws org.apache.sling.api.resource.ResourceNotFoundException May be * thrown if the operation requires an existing request * resource. If this exception is thrown the Sling POST servlet * sends back a 404/NOT FOUND response to the * client. * @throws org.apache.sling.api.SlingException May be thrown if an error * occurrs running the operation. */ void run(SlingHttpServletRequest request, PostResponse response, SlingPostProcessor[] processors); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy