Examples of decrementWSDeploymentCount()


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

    @Override
    public void internalUndeploy(final org.jboss.as.server.deployment.DeploymentUnit context) {
        if (isWebServiceDeployment(context)) {
            ServerConfigImpl config = (ServerConfigImpl)context.getServiceRegistry().getRequiredService(WSServices.CONFIG_SERVICE).getValue();
            config.decrementWSDeploymentCount();
        }
    }

    private static boolean isWebServiceDeployment(final DeploymentUnit unit) {
        return unit.getAttachment(WSAttachmentKeys.DEPLOYMENT_KEY) != null;
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.