Package com.sun.enterprise.deployment.annotation.factory

Examples of com.sun.enterprise.deployment.annotation.factory.ExtensionModuleAnnotationFactory


     *        of ArchiveDeployer used as key
     *  @return the annotation processor for this module type
     */
    public static AnnotationProcessor getExtensionAnnotationProcessor(
        String archiveDeployerClassName) {
        ExtensionModuleAnnotationFactory factory =
            ExtensionFactoryFactory.getExtensionModuleAnnotationFactory(
                archiveDeployerClassName);
        return factory.getAnnotationProcessor();
    }
View Full Code Here


     @param archiveDeployerClassName the implementation class
     *        of ArchiveDeployer used as key
     */
    public static void registerAnnotationHandler(
        AnnotationHandler handler, String archiveDeployerClassName) {
        ExtensionModuleAnnotationFactory factory =
            ExtensionFactoryFactory.getExtensionModuleAnnotationFactory(
                archiveDeployerClassName);
        factory.registerAnnotationHandler(handler);
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.deployment.annotation.factory.ExtensionModuleAnnotationFactory

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.