Package org.jboss.as.jpa.injectors

Examples of org.jboss.as.jpa.injectors.PersistenceContextBindingSourceDescription


            }
            else {
                properties = null;
            }

            return new PersistenceContextBindingSourceDescription(type,properties, puServiceName, deploymentUnit, scopedPuName, injectionTypeName);
        } else {
            return new PersistenceUnitBindingSourceDescription(puServiceName, deploymentUnit, scopedPuName, injectionTypeName);
        }
    }
View Full Code Here


            final String unitName, PersistenceContextType type, Map properties)
            throws DeploymentUnitProcessingException {

        String scopedPuName = getScopedPuName(deploymentUnit, unitName);
        ServiceName puServiceName = getPuServiceName(scopedPuName);
        return new PersistenceContextBindingSourceDescription(type, properties, puServiceName, deploymentUnit, scopedPuName, EntityManager.class.getName());
    }
View Full Code Here

TOP

Related Classes of org.jboss.as.jpa.injectors.PersistenceContextBindingSourceDescription

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.