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

org.hcjf.io.console.ConsoleCommandLayerInterface Maven / Gradle / Ivy

package org.hcjf.io.console;

import org.hcjf.layers.LayerInterface;
import org.hcjf.layers.distributed.DistributedLayerInterface;

import java.util.List;

/**
 * @author javaito
 */
public interface ConsoleCommandLayerInterface extends LayerInterface, DistributedLayerInterface {

    /**
     * Command implementation.
     * @param parameters Parameters to execute the command.
     * @return Result of the command execution.
     */
    Object execute(List parameters);

}