All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sapia.ubik.rmi.replication.ReplicationEvent Maven / Gradle / Ivy

The newest version!
package org.sapia.ubik.rmi.replication;

import org.sapia.ubik.rmi.interceptor.Event;


/**
 * @author Yanick Duchesne
 * 
*
Copyright:
Copyright © 2002-2004 Sapia Open Source Software. All Rights Reserved.
*
License:
Read the license.txt file of the jar or visit the * license page at the Sapia OSS web site
*
*/ public class ReplicationEvent implements Event { private ReplicatedCommand _cmd; /** * Creates an instance of this class with the given command. */ public ReplicationEvent(ReplicatedCommand command) { _cmd = command; } /** * @return the ReplicatedCommand that this instance holds. */ public ReplicatedCommand getReplicatedCommand() { return _cmd; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy