Package org.apache.sling.replication.trigger.impl

Examples of org.apache.sling.replication.trigger.impl.ChainReplicateReplicationTrigger


            return new ScheduledReplicationTrigger(action, path, interval, scheduler);
        } else if (TRIGGER_REPLICATION_EVENT.equals(factory)) {
            String path = PropertiesUtil.toString(properties.get(TRIGGER_REPLICATION_EVENT_PROPERTY_PATH), null);

            return new ChainReplicateReplicationTrigger(path, bundleContext);
        } else if (TRIGGER_JCR_EVENT.equals(factory)) {
            String path = PropertiesUtil.toString(properties.get(TRIGGER_JCR_EVENT_PROPERTY_PATH), null);
            String serviceName = PropertiesUtil.toString(properties.get(TRIGGER_JCR_EVENT_PROPERTY_SERVICE_NAME), null);

            return new JcrEventReplicationTrigger(repository, path, serviceName);
View Full Code Here

TOP

Related Classes of org.apache.sling.replication.trigger.impl.ChainReplicateReplicationTrigger

Copyright © 2018 www.massapicom. 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.