Package org.jboss.as.deployment.unit

Examples of org.jboss.as.deployment.unit.DeploymentUnitContextImpl


            // Add a deployment failure listener to the batch
            deploymentSubBatch.addListener(new DeploymentFailureListener(deploymentServiceName));

            // Create the deployment unit context
            final DeploymentUnitContext deploymentUnitContext = new DeploymentUnitContextImpl(deploymentServiceName.getSimpleName(), deploymentSubBatch, serviceBuilder);
            attachVirtualFile(deploymentUnitContext, deploymentRoot);
            deploymentUnitContext.putAttachment(MountHandle.ATTACHMENT_KEY, handle);

            // Get the optional Manifest for this deployment
            try {
                Manifest manifest = VFSUtils.getManifest(deploymentRoot);
                if (manifest != null)
View Full Code Here

TOP

Related Classes of org.jboss.as.deployment.unit.DeploymentUnitContextImpl

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.