Package org.apache.webbeans.spi.ee.openejb

Source Code of org.apache.webbeans.spi.ee.openejb.ResourceInjectionProcessor

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with this
* work for additional information regarding copyright ownership. The ASF
* licenses this file to You under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law
* or agreed to in writing, software distributed under the License is
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
package org.apache.webbeans.spi.ee.openejb;

import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;

import javax.annotation.Resource;
import javax.ejb.EJB;
import javax.naming.Context;
import javax.naming.NamingException;
import javax.persistence.PersistenceContext;
import javax.persistence.PersistenceUnit;
import javax.xml.ws.WebServiceRef;

import org.apache.webbeans.spi.ee.openejb.jpa.JPAServiceOpenEJBImpl;


class ResourceInjectionProcessor
{
    private Context context = null;

    private JPAServiceOpenEJBImpl jpaService = null;
   
    ResourceInjectionProcessor(Context context)
    {
        this.context = context;
        this.jpaService = new JPAServiceOpenEJBImpl(this.context);
    }

    public Object getResourceObject(Field field) throws IllegalAccessException, InvocationTargetException, NamingException
    {
        if (context == null)
        {
            // No resource injection
            return null;
        }

        if (field.isAnnotationPresent(Resource.class))
        {
            Resource annotation = field.getAnnotation(Resource.class);
           
            return lookupFieldResource(context, "openejb/Resource/"+annotation.name());
           
        }
       
        if (field.isAnnotationPresent(EJB.class))
        {
            EJB annotation = field.getAnnotation(EJB.class);
           
            return lookupFieldResource(context, annotation.name());
        }
       
        if (field.isAnnotationPresent(WebServiceRef.class))
        {
            WebServiceRef annotation = field.getAnnotation(WebServiceRef.class);
           
            return lookupFieldResource(context, annotation.name());
        }
       
        if (field.isAnnotationPresent(PersistenceContext.class))
        {
            PersistenceContext annotation = field.getAnnotation(PersistenceContext.class);
           
            return this.jpaService.getPersistenceContext(annotation.unitName());
           
        }
       
        if (field.isAnnotationPresent(PersistenceUnit.class))
        {
            PersistenceUnit annotation = field.getAnnotation(PersistenceUnit.class);
           
            return this.jpaService.getPersistenceUnit(annotation.unitName());
        }
       
        return null;
    }

    /**
     * Inject resources in specified field.
     */
    protected Object lookupFieldResource(javax.naming.Context context, String name) throws NamingException, IllegalAccessException
    {
        Object lookedupResource = null;

        if ((name != null) && (name.length() > 0))
        {
            lookedupResource = context.lookup("java:/" + name);                       
        }
       
        return lookedupResource;
    }   
}
TOP

Related Classes of org.apache.webbeans.spi.ee.openejb.ResourceInjectionProcessor

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.