Package com.sun.enterprise.deployment.util

Examples of com.sun.enterprise.deployment.util.ModuleContentValidator


    protected void postOpen(RootDeploymentDescriptor descriptor, AbstractArchive archive)
        throws IOException
    {
        super.postOpen(descriptor, archive);
        EjbBundleDescriptor ejbBundle = (EjbBundleDescriptor) descriptor;
        ModuleContentValidator mdv = new ModuleContentValidator(archive);
        ejbBundle.visit((EjbBundleVisitor)mdv);
    }
View Full Code Here


    {
       
        super.postOpen(descriptor, archive);
       
        ApplicationClientDescriptor appClient = (ApplicationClientDescriptor) descriptor;
        ModuleContentValidator mdv = new ModuleContentValidator(archive);
        appClient.visit(mdv);
    }        
View Full Code Here

    protected void postOpen(RootDeploymentDescriptor descriptor, AbstractArchive archive)
        throws IOException
    {
        super.postOpen(descriptor, archive);
        WebBundleDescriptor webBundle = (WebBundleDescriptor) descriptor;
        ModuleContentValidator mdv = new ModuleContentValidator(archive);
        webBundle.visit(mdv);
    }
View Full Code Here

    protected void postOpen(WebFragmentDescriptor descriptor, ReadableArchive archive)
        throws IOException
    {
        super.postOpen(descriptor, archive);
        WebFragmentDescriptor webFragment = (WebFragmentDescriptor) descriptor;
        ModuleContentValidator mdv = new ModuleContentValidator(archive);
        webFragment.visit(mdv);
    }
View Full Code Here

        runValidations(descriptor, archive);
    }

    protected void runValidations(final ApplicationClientDescriptor acDesc,
            final ReadableArchive archive) {
        ModuleContentValidator mdv = new ModuleContentValidator(archive);
        acDesc.visit(mdv);
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.deployment.util.ModuleContentValidator

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.