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

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


    public Properties getProperties(final InjectionPoint injectionPoint) throws IOException
    {
        InjectableResource injectableResource = getAnnotation(injectionPoint);
        InjectableResourceProvider provider =
                BeanProvider.getContextualReference(injectableResource.resourceProvider());
        final Properties properties = provider.readProperties(injectableResource);
        return properties;
    }

    public void closeInputStream(@Disposes
                                 @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.