Examples of DeploymentSynchronizerConfiguration


Examples of org.wso2.carbon.deployment.synchronizer.util.DeploymentSynchronizerConfiguration

    public void disableSynchronizerForCarbonRepository() throws DeploymentSynchronizerException {

        int tenantId = MultitenantUtils.getTenantId(getConfigContext());
        try {
            DeploymentSynchronizerConfiguration config =
                    CarbonRepositoryUtils.getActiveSynchronizerConfiguration(tenantId);
            if (config == null || !config.isEnabled()) {
                log.warn("Attempted to disable an already disabled deployment synchronizer");
                return;
            }
            config.setEnabled(false);
            CarbonRepositoryUtils.persistConfiguration(config, tenantId);
        } catch (RegistryException e) {
            handleException("Error while persisting the deployment synchronizer configuration", e);
        }
View Full Code Here

Examples of org.wso2.carbon.deployment.synchronizer.util.DeploymentSynchronizerConfiguration

     * @throws RegistryException If an error occurs while accessing the registry
     */
    public static DeploymentSynchronizer newCarbonRepositorySynchronizer(int tenantId)
            throws RegistryException {

        DeploymentSynchronizerConfiguration config = getActiveSynchronizerConfiguration(tenantId);

        if (config.isEnabled()) {
            UserRegistry registry = Utils.getRegistry(tenantId);
            String registryPath = getCarbonRepositoryRegistryPath(tenantId);
            String filePath = MultitenantUtils.getAxis2RepositoryPath(tenantId);

            DeploymentSynchronizer synchronizer = DeploymentSynchronizationManager.getInstance().
                createSynchronizer(registry, registryPath, filePath);
            synchronizer.setAutoCommit(config.isAutoCommit());
            synchronizer.setAutoCheckout(config.isAutoCheckout());
            synchronizer.setPeriod(config.getPeriod());

            if (config.isUseEventing() && ServiceReferenceHolder.getEventingService() != null) {
                AutoCheckoutController checkoutController = new EventingBasedAutoCheckoutController(
                        registry, registryPath);
                synchronizer.setAutoCheckoutController(checkoutController);
            }

View Full Code Here

Examples of org.wso2.carbon.deployment.synchronizer.util.DeploymentSynchronizerConfiguration

     * @throws RegistryException if an error occurs while accessing the registry
     */
    public static DeploymentSynchronizerConfiguration getActiveSynchronizerConfiguration(
            int tenantId) throws RegistryException {

        DeploymentSynchronizerConfiguration config =
                getDeploymentSyncConfigurationFromRegistry(tenantId);
        if (config == null) {
            config = Utils.getDeploymentSyncConfiguration();
        }
        return config;
View Full Code Here

Examples of org.wso2.carbon.deployment.synchronizer.util.DeploymentSynchronizerConfiguration

     * @param tenantId Tenant ID
     * @return true if deployment synchronizer is enabled for the repository
     * @throws RegistryException if an error occurs while loading configuration from the registry
     */
    public static boolean isSynchronizerEnabled(int tenantId) throws RegistryException {
        DeploymentSynchronizerConfiguration config = getActiveSynchronizerConfiguration(tenantId);
        return config.isEnabled();
    }
View Full Code Here

Examples of org.wso2.carbon.deployment.synchronizer.util.DeploymentSynchronizerConfiguration

        if (!localRepository.resourceExists(DeploymentSynchronizerConstants.CARBON_REPOSITORY)) {
            return null;
        }

        Resource resource = localRepository.get(DeploymentSynchronizerConstants.CARBON_REPOSITORY);
        DeploymentSynchronizerConfiguration config = new DeploymentSynchronizerConfiguration();
        String status = new String((byte[]) resource.getContent());
        if ("enabled".equals(status)) {
            config.setEnabled(true);
        }

        config.setAutoCheckout(Boolean.valueOf(resource.getProperty(
                DeploymentSynchronizerConstants.AUTO_CHECKOUT_MODE)));
        config.setAutoCommit(Boolean.valueOf(resource.getProperty(
                DeploymentSynchronizerConstants.AUTO_COMMIT_MODE)));
        config.setPeriod(Long.valueOf(resource.getProperty(
                DeploymentSynchronizerConstants.AUTO_SYNC_PERIOD)));
        config.setUseEventing(Boolean.valueOf(resource.getProperty(
                DeploymentSynchronizerConstants.USE_EVENTING)));
        resource.discard();
        return config;
    }
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.