
com.googlecode.jpattern.shared.command.NullBaseCommand Maven / Gradle / Ivy
The newest version!
package com.googlecode.jpattern.shared.command;
/**
*
* @author Francesco Cina'
*
* 29/gen/2011
*/
public class NullBaseCommand implements IBaseCommand {
private static final long serialVersionUID = 1L;
@Override
public IBaseCommandResult exec() {
return new BaseCommandResult();
}
@Override
public IBaseCommandResult rollback() {
return new BaseCommandResult();
}
@Override
public IBaseCommandResult rollback(IBaseCommandResult execResult) {
return new BaseCommandResult();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy