eu.unicore.ucc.ProvidedCommands Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ucc-core Show documentation
Show all versions of ucc-core Show documentation
UNICORE Commandline Client
The newest version!
package eu.unicore.ucc;
/**
* this interface is used to dynamically load the provided commands via
* the ServiceLoader mechanism
*
* @since 1.4.0
* @author schuller
*/
public interface ProvidedCommands {
/**
* get the list of {@link Command} instances that are provided
*/
public Command[]getCommands();
}