Interface ResourceFormats
-
- All Superinterfaces:
AppService
public interface ResourceFormats extends AppService
Provides service level access to Rundeck Resource Formats
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResourceFormatGeneratorgetResourceFormatGenerator(java.lang.String format)ResourceFormatParsergetResourceFormatParser(java.lang.String format)
-
-
-
Method Detail
-
getResourceFormatParser
ResourceFormatParser getResourceFormatParser(java.lang.String format) throws UnsupportedFormatException
- Parameters:
format- format name- Returns:
- parser for resource format
- Throws:
UnsupportedFormatException- if format is not supported
-
getResourceFormatGenerator
ResourceFormatGenerator getResourceFormatGenerator(java.lang.String format) throws UnsupportedFormatException
- Parameters:
format- format name- Returns:
- generator for resource format
- Throws:
UnsupportedFormatException- if format is not supported
-
-