Examples of DeploymentSynchronizationManager


Examples of org.wso2.carbon.deployment.synchronizer.DeploymentSynchronizationManager

        String timestamp = timestampElement.getText();
        String registryPath = pathElement.getText();
        int tenantId = Integer.parseInt(tenantElement.getText());

        DeploymentSynchronizationManager syncManager = DeploymentSynchronizationManager.getInstance();
        String filePath = MultitenantUtils.getAxis2RepositoryPath(tenantId);
        DeploymentSynchronizer synchronizer = syncManager.getSynchronizer(filePath);
        if (synchronizer == null || !synchronizer.isAutoCheckout()) {
            log.warn("Unable to find the synchronizer for the file path: " + filePath);
            return;
        }
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.