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

nyla.solutions.global.patterns.command.file.FileCommand Maven / Gradle / Ivy

package nyla.solutions.global.patterns.command.file;

import java.io.File;

import nyla.solutions.global.patterns.command.Command;

/**
 * Interface to process a file
 * @author Gregory Green
 *
 */
public interface FileCommand extends Command
{
	/**
	 * Perform an operation on a file/directory
	 * @param file the file to process
	 */
	public ReturnType execute(File file);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy