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

org.testifyproject.glassfish.jersey.InjectionManagerProvider Maven / Gradle / Ivy

The newest version!
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 2014-2017 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 org.testifyproject.testifyprojectpliance with the License.  You can
 * obtain a copy of the License at
 * https://oss.oracle.org.testifyproject.testifyproject/licenses/CDDL+GPL-1.1
 * or 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 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.testifyproject.glassfish.org.testifyproject;

import javax.ws.rs.core.FeatureContext;
import javax.ws.rs.ext.ReaderInterceptorContext;
import javax.ws.rs.ext.WriterInterceptorContext;

import org.testifyproject.glassfish.org.testifyproject.internal.LocalizationMessages;
import org.testifyproject.glassfish.org.testifyproject.internal.inject.InjectionManager;
import org.testifyproject.glassfish.org.testifyproject.internal.inject.InjectionManagerSupplier;

/**
 * Utility class with static methods that extract {@link InjectionManager injection manager}
 * from various JAX-RS org.testifyproject.testifyprojectponents. This class can be used when no injection is possible by
 * {@link javax.ws.rs.core.Context} or {@link javax.inject.Inject} annotation due to character of
 * provider but there is a need to get any service from {@link InjectionManager}.
 * 

* Injections are not possible for example when a provider is registered as an instance on the client. * In this case the runtime will not inject the instance as this instance might be used in other client * runtimes too. *

*

* Example. This is the class using a standard injection: *

 *     public static class MyWriterInterceptor implements WriterInterceptor {
 *         @Inject
 *         MyInjectedService service;
 *
 *         @Override
 *         public void aroundWriteTo(WriterInterceptorContext context) throws IOException, WebApplicationException {
 *             Something something = service.getSomething();
 *             ...
 *         }
 *
 *     }
 * 
*

*

* If this injection is not possible then this construct can be used: *

 *     public static class MyWriterInterceptor implements WriterInterceptor {
 *
 *         @Override
 *         public void aroundWriteTo(WriterInterceptorContext context) throws IOException, WebApplicationException {
 *             InjectionManager injectionManager = InjectionManagerProvider.getInjectionManager(context);
 *             MyInjectedService service = injectionManager.getInstance(MyInjectedService.class);
 *             Something something = service.getSomething();
 *             ...
 *         }
 *     }
 * 
*

*

* Note, that this injection support is intended mostly for injection of custom user types. JAX-RS types * are usually available without need for injections in method parameters. However, when injection of custom * type is needed it is preferred to use standard injections if it is possible rather than injection support * provided by this class. *

*

* User returned {@code InjectionManager} only for purpose of getting services (do not change the state of the injection manager). *

* * * @author Miroslav Fuksa * * @since 2.6 */ public class InjectionManagerProvider { /** * Extract and return injection manager from {@link javax.ws.rs.ext.WriterInterceptorContext writerInterceptorContext}. * The method can be used to inject custom types into a {@link javax.ws.rs.ext.WriterInterceptor}. * * @param writerInterceptorContext Writer interceptor context. * * @return injection manager. * * @throws java.lang.IllegalArgumentException when {@code writerInterceptorContext} is not a default * Jersey implementation provided by Jersey as argument in the * {@link javax.ws.rs.ext.WriterInterceptor#aroundWriteTo(javax.ws.rs.ext.WriterInterceptorContext)} method. */ public static InjectionManager getInjectionManager(WriterInterceptorContext writerInterceptorContext) { if (!(writerInterceptorContext instanceof InjectionManagerSupplier)) { throw new IllegalArgumentException( LocalizationMessages.ERROR_SERVICE_LOCATOR_PROVIDER_INSTANCE_FEATURE_WRITER_INTERCEPTOR_CONTEXT( writerInterceptorContext.getClass().getName())); } return ((InjectionManagerSupplier) writerInterceptorContext).getInjectionManager(); } /** * Extract and return injection manager from {@link javax.ws.rs.ext.ReaderInterceptorContext readerInterceptorContext}. * The method can be used to inject custom types into a {@link javax.ws.rs.ext.ReaderInterceptor}. * * @param readerInterceptorContext Reader interceptor context. * * @return injection manager. * * @throws java.lang.IllegalArgumentException when {@code readerInterceptorContext} is not a default * Jersey implementation provided by Jersey as argument in the * {@link javax.ws.rs.ext.ReaderInterceptor#aroundReadFrom(javax.ws.rs.ext.ReaderInterceptorContext)} method. */ public static InjectionManager getInjectionManager(ReaderInterceptorContext readerInterceptorContext) { if (!(readerInterceptorContext instanceof InjectionManagerSupplier)) { throw new IllegalArgumentException( LocalizationMessages.ERROR_SERVICE_LOCATOR_PROVIDER_INSTANCE_FEATURE_READER_INTERCEPTOR_CONTEXT( readerInterceptorContext.getClass().getName())); } return ((InjectionManagerSupplier) readerInterceptorContext).getInjectionManager(); } /** * Extract and return injection manager from {@link javax.ws.rs.core.FeatureContext featureContext}. * The method can be used to inject custom types into a {@link javax.ws.rs.core.Feature}. *

* Note that features are utilized during initialization phase when not all providers are registered yet. * It is undefined which injections are already available in this phase. *

* * @param featureContext Feature context. * * @return injection manager. * * @throws java.lang.IllegalArgumentException when {@code writerInterceptorContext} is not a default * Jersey instance provided by Jersey * in {@link javax.ws.rs.core.Feature#configure(javax.ws.rs.core.FeatureContext)} method. */ public static InjectionManager getInjectionManager(FeatureContext featureContext) { if (!(featureContext instanceof InjectionManagerSupplier)) { throw new IllegalArgumentException( LocalizationMessages.ERROR_SERVICE_LOCATOR_PROVIDER_INSTANCE_FEATURE_CONTEXT( featureContext.getClass().getName())); } return ((InjectionManagerSupplier) featureContext).getInjectionManager(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy