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

org.glassfish.jersey.server.spi.internal.ResourceMethodDispatcher Maven / Gradle / Ivy

Go to download

A bundle project producing JAX-RS RI bundles. The primary artifact is an "all-in-one" OSGi-fied JAX-RS RI bundle (jaxrs-ri.jar). Attached to that are two compressed JAX-RS RI archives. The first archive (jaxrs-ri.zip) consists of binary RI bits and contains the API jar (under "api" directory), RI libraries (under "lib" directory) as well as all external RI dependencies (under "ext" directory). The secondary archive (jaxrs-ri-src.zip) contains buildable JAX-RS RI source bundle and contains the API jar (under "api" directory), RI sources (under "src" directory) as well as all external RI dependencies (under "ext" directory). The second archive also contains "build.xml" ANT script that builds the RI sources. To build the JAX-RS RI simply unzip the archive, cd to the created jaxrs-ri directory and invoke "ant" from the command line.

There is a newer version: 3.1.6
Show newest version
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 2011-2015 Oracle and/or its affiliates. All rights reserved.
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License.  You can
 * obtain a copy of the License at
 * http://glassfish.java.net/public/CDDL+GPL_1_1.html
 * or packager/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 *
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at packager/legal/LICENSE.txt.
 *
 * GPL Classpath Exception:
 * Oracle designates this particular file as subject to the "Classpath"
 * exception as provided by Oracle in the GPL Version 2 section of the License
 * file that accompanied this code.
 *
 * Modifications:
 * If applicable, add the following below the License Header, with the fields
 * enclosed by brackets [] replaced by your own identifying information:
 * "Portions Copyright [year] [name of copyright owner]"
 *
 * Contributor(s):
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 */
package org.glassfish.jersey.server.spi.internal;

import java.lang.reflect.InvocationHandler;

import javax.ws.rs.ProcessingException;
import javax.ws.rs.core.Request;
import javax.ws.rs.core.Response;

import org.glassfish.jersey.server.ContainerRequest;
import org.glassfish.jersey.server.internal.inject.ConfiguredValidator;
import org.glassfish.jersey.server.internal.process.MappableException;
import org.glassfish.jersey.server.model.Invocable;

/**
 * A resource method dispatcher responsible for consuming a JAX-RS {@link Request request}
 * by invoking the configured {@link Invocable resource method} on a given
 * resource instance and returning the method invocation result in a form of a
 * JAX-RS {@link Response response}.
 *
 * @author Marek Potociar (marek.potociar at oracle.com)
 * @author Jakub Podlesak (jakub.podlesak at oracle.com)
 */
public interface ResourceMethodDispatcher {

    /**
     * Provider interface for creating a {@link ResourceMethodDispatcher resource
     * method dispatcher} instances.
     *
     * A provider examines the model of the Web resource method and
     * determines if an invoker can be created for that Web resource method.
     * 

* Multiple providers can specify the support for different Web resource method * patterns, ranging from simple patterns (such as void return and input * parameters) to complex patterns that take type URI and query arguments * and HTTP request headers as typed parameters. *

*

* Resource method dispatcher provider implementations can be registered in Jersey application * by supplying a custom HK2 {@link org.glassfish.hk2.utilities.Binder} that binds the * custom service implementation(s) to the {@code ResourceMethodDispatcher.Provider} contract. *

* * @author Paul Sandoz * @author Marek Potociar (marek.potociar at oracle.com) */ public static interface Provider { /** * Create a {@link ResourceMethodDispatcher resource method dispatcher} for * a given {@link Invocable invocable resource method}. *

* If the provider supports the invocable resource method, it will * return a new non-null dispatcher instance configured to invoke the supplied * invocable resource method via the provided {@link InvocationHandler * invocation handler} whenever the * {@link #dispatch(Object, org.glassfish.jersey.server.ContainerRequest) dispatch(...)} * method is called on that dispatcher instance. * * @param method the invocable resource method. * @param handler invocation handler to be used for the resource method invocation. * @param validator configured validator to be used for validation during resource method invocation * @return the resource method dispatcher, or {@code null} if it could not be * created for the given resource method. */ public ResourceMethodDispatcher create(final Invocable method, final InvocationHandler handler, final ConfiguredValidator validator); } /** * Reflectively dispatch a request to the underlying {@link Invocable * invocable resource method} via the configured {@link InvocationHandler * invocation handler} using the provided resource class instance. *

* In summary, the main job of the dispatcher is to convert a request into * an array of the Java method input parameters and subsequently convert the * returned response of an arbitrary Java type to a JAX-RS {@link Response response} * instance. *

* When the method is invoked, the dispatcher will extract the * {@link java.lang.reflect.Method Java method} information from the invocable * resource method and use the information to retrieve the required input * parameters from either the request instance or any other available run-time * information. Once the set of input parameter values is computed, the underlying * invocation handler instance is invoked to process (invoke) the Java resource * method with the computed input parameter values. The returned response is * subsequently converted into a JAX-RS {@code Response} type and returned * from the dispatcher. *

* It is assumed that the supplied resource implements the invocable method. * Dispatcher implementation should not need to do any additional checks in * that respect. * * @param resource the resource class instance. * @param request request to be dispatched. * @return {@link Response response} for the dispatched request. * @throws ProcessingException (possibly {@link MappableException mappable}) * container exception that will be handled by the Jersey server container. */ public Response dispatch(final Object resource, final ContainerRequest request) throws ProcessingException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy