Package org.apache.webbeans.resource.spi

Examples of org.apache.webbeans.resource.spi.ResourceService


    @Override
    public void injectResources(Object instance) throws RuntimeException
    {
        Field[] fields = instance.getClass().getDeclaredFields();
        ResourceService service = ServiceLoader.getService(ResourceService.class);
        for(Field field : fields)
        {
            boolean access = field.isAccessible();
            try
            {               
                field.setAccessible(true);
                Object resource = service.getResource(field);
               
                if(resource != null)
                {
                    field.set(instance, resource);  
                }               
View Full Code Here

TOP

Related Classes of org.apache.webbeans.resource.spi.ResourceService

Copyright © 2018 www.massapicom. 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.