Examples of DeploymentOverlayService


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

        final String name = address.getLastElement().getValue();
        installServices(context, verificationHandler, newControllers, name);
    }

    void installServices(final OperationContext context, final ServiceVerificationHandler verificationHandler, final List<ServiceController<?>> newControllers, final String name) {
        final DeploymentOverlayService service = new DeploymentOverlayService(name);
        final ServiceName serviceName = DeploymentOverlayService.SERVICE_NAME.append(name);
        ServiceBuilder<DeploymentOverlayService> builder = context.getServiceTarget().addService(serviceName, service);
        if (verificationHandler != null) {
            builder.addListener(verificationHandler);
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.