Package org.apache.deltaspike.core.api.resourceloader

Examples of org.apache.deltaspike.core.api.resourceloader.InjectableResourceProvider.readStream()


    public InputStream getInputStream(final InjectionPoint injectionPoint)
    {
        InjectableResource injectableResource = getAnnotation(injectionPoint);
        InjectableResourceProvider provider =
                BeanProvider.getContextualReference(injectableResource.resourceProvider());
        final InputStream is = provider.readStream(injectableResource);
        return is;
    }

    @Produces
    @InjectableResource(resourceProvider = InjectableResourceProvider.class,location = "")
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.