Package org.apache.sling.replication.event

Examples of org.apache.sling.replication.event.ReplicationEvent


    @Reference
    private EventAdmin eventAdmin;

    public void generateEvent(@Nonnull ReplicationEventType replicationEventType, @Nonnull Dictionary<?, ?> properties) {
        ReplicationEvent replicationEvent = new ReplicationEvent(replicationEventType, properties);
        eventAdmin.postEvent(replicationEvent);
        log.debug("replication event posted {}", replicationEvent);
    }
View Full Code Here

TOP

Related Classes of org.apache.sling.replication.event.ReplicationEvent

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.