Examples of incrementWSDeploymentCount()


Examples of org.jboss.as.webservices.config.ServerConfigImpl.incrementWSDeploymentCount()

        final DeploymentUnit unit = phaseContext.getDeploymentUnit();
        WSDeploymentBuilder.getInstance().build(unit);

        if (isWebServiceDeployment(unit)) { //note, this check works only after the WSDeploymentBuilder above has run
            ServerConfigImpl config = (ServerConfigImpl)phaseContext.getServiceRegistry().getRequiredService(WSServices.CONFIG_SERVICE).getValue();
            config.incrementWSDeploymentCount();
        }
    }

    @Override
    public void internalUndeploy(final org.jboss.as.server.deployment.DeploymentUnit context) {
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.