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

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