
com.googlecode.jpattern.shared.command.IBaseCommand Maven / Gradle / Ivy
The newest version!
package com.googlecode.jpattern.shared.command;
import java.io.Serializable;
/**
*
* @author Francesco Cina'
*
* 28/gen/2011
*
* An interface representing the Command pattern.
*
*/
public interface IBaseCommand extends Serializable {
IBaseCommandResult exec();
IBaseCommandResult rollback();
IBaseCommandResult rollback(IBaseCommandResult execResult);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy