Example usage for org.apache.commons.chain Command interface-usage

List of usage examples for org.apache.commons.chain Command interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.chain Command interface-usage.

Usage

From source file bridge.toolkit.commands.CleanUp.java

/**
 * Command that clean out the context object and deletes files if necessary
 */
public class CleanUp implements Command {
    /**
     * The unit of processing work to be performed for the Clean up module.

From source file com.reactivetechnologies.blaze.handlers.ThrottlingCommandHandler.java

public interface ThrottlingCommandHandler extends Command {

}

From source file info.magnolia.commands.MgnlCommand.java

/**
 * @author Philipp Bracher
 * @version $Revision$ ($Author$)
 *
 */
public abstract class MgnlCommand implements Command {

From source file com.azaptree.services.command.CommandChain.java

public interface CommandChain extends Chain, Command {

    Command[] getCommands();

}

From source file com.reactivetechnologies.blaze.throttle.ThrottleCommand.java

class ThrottleCommand implements Command {

    public ThrottleCommand() {
    }

    @Override

From source file com.azaptree.services.command.Command.java

public interface Command extends org.apache.commons.chain.Command {

    Optional<TypeReferenceKey<?>[]> getInputKeys();

    String getName();

From source file com.sf.ddao.conn.StartTransaction.java

/**
 * Date: Oct 19, 2009
 * Time: 4:24:24 PM
 */
public class StartTransaction implements Command {
    public boolean execute(Context context) throws Exception {

From source file nz.co.jsrsolutions.ds3.command.ListExchangeMonthsCommand.java

public class ListExchangeMonthsCommand implements Command {

    private static final transient Logger logger = Logger.getLogger(ListExchangeMonthsCommand.class);

    public boolean execute(Context context) throws Exception {

From source file bridge.toolkit.commands.PostProcess.java

/**
 * The last module in the toolkit that applys the SCORM Runtime files and 
 * creates the PIF file.  
 */
public class PostProcess implements Command {
    /**

From source file org.ambiance.chain.AmbianceCommand.java

public abstract class AmbianceCommand implements Command {

    public static final boolean CHAIN_STOP = true;
    public static final boolean CHAIN_CONTINUE = false;

    public abstract boolean execute(Context ctx) throws Exception;