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

org.apache.catalina.servlet4preview.RequestDispatcher Maven / Gradle / Ivy

There is a newer version: 11.0.0-M26
Show newest version
/*
 * 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.catalina.servlet4preview;

/**
 * Provides early access to some parts of the proposed Servlet 4.0 API.
 *
 * @deprecated This class is not included in Tomcat 9 onwards. Users of this
 *             class should normally upgrade to Tomcat 9 and switch to the
 *             Servlet 4.0 API. If the functionality is required in Tomcat 8.5,
 *             then the Tomcat implementation classes should be used directly.
 *             This class may be removed from Tomcat 8.5.x some time after 30
 *             September 2018.
 */
@Deprecated
public interface RequestDispatcher extends javax.servlet.RequestDispatcher {

    /**
     * The name of the request attribute that should be set by the container
     * when the {@link #forward(javax.servlet.ServletRequest,
     * javax.servlet.ServletResponse)} method is called. It provides the
     * original value of a path-related property of the request. See the chapter
     * "Forwarded Request Parameters" in the Servlet Specification for details.
     *
     * @since Servlet 4.0
     */
    static final String FORWARD_MAPPING = "javax.servlet.forward.mapping";

    /**
     * The name of the request attribute that should be set by the container
     * when the {@link #include(javax.servlet.ServletRequest,
     * javax.servlet.ServletResponse)} method is called on the
     * {@code RequestDispatcher} obtained by a path and not by a name.
     * It provides information on the path that was used to obtain the
     * {@code RequestDispatcher} instance for this include call. See the chapter
     * "Included Request Parameters" in the Servlet Specification for details.
     *
     * @since Servlet 4.0
     */
    static final String INCLUDE_MAPPING = "javax.servlet.include.mapping";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy