Package org.jboss.as.server.deploymentoverlay.service

Examples of org.jboss.as.server.deploymentoverlay.service.DeploymentOverlayPriority


    @Override
    protected void recoverServices(final OperationContext context, final ModelNode operation, final ModelNode model) throws OperationFailedException {
        final PathAddress address = PathAddress.pathAddress(operation.get(OP_ADDR));
        final String name = address.getLastElement().getValue();
        final DeploymentOverlayPriority priority = address.getElement(0).getKey().equals(DEPLOYMENT_OVERLAY) ? DeploymentOverlayPriority.SERVER : DeploymentOverlayPriority.SERVER_GROUP;

        DeploymentOverlayAdd.INSTANCE.installServices(context, null, null, name);
    }
View Full Code Here

TOP

Related Classes of org.jboss.as.server.deploymentoverlay.service.DeploymentOverlayPriority

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.