Package org.jboss.as.naming

Examples of org.jboss.as.naming.ConstructorManagedReferenceFactory


    public static final ServiceName SERVICE_NAME = ServiceName.JBOSS.append("ee", "reflectiveClassIntrospector");

    @Override
    public ManagedReferenceFactory createFactory(Class<?> clazz) {
        try {
            return new ConstructorManagedReferenceFactory(clazz.getDeclaredConstructor());
        } catch (NoSuchMethodException e) {
            throw new RuntimeException(e);
        }
    }
View Full Code Here

TOP

Related Classes of org.jboss.as.naming.ConstructorManagedReferenceFactory

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.