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

nl.lexemmens.podman.command.Command Maven / Gradle / Ivy

package nl.lexemmens.podman.command;

import org.apache.maven.plugin.MojoExecutionException;

import java.util.List;

/**
 * Generic Command interface
 */
public interface Command {

    /**
     * Executes the command
     *
     * @return A list of Strings representing the output lines
     * @throws MojoExecutionException If the command execution fails
     */
    List execute() throws MojoExecutionException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy