Examples of AutoCheckoutController


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

            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);
            }

            return synchronizer;
View Full Code Here

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

        }

        if (registryPath.startsWith(absoluteRegistryPath)) {
            try {
                Date date = DATE_FORMAT.parse(timestamp);
                AutoCheckoutController checkoutController = synchronizer.getAutoCheckoutController();
                if (checkoutController instanceof EventingBasedAutoCheckoutController) {
                    ((EventingBasedAutoCheckoutController) checkoutController).requestCheckout(
                            date.getTime());
                }
            } catch (ParseException e) {
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.