Uses of Class
io.wcm.devops.conga.generator.spi.context.FileContext
-
Packages that use FileContext Package Description io.wcm.devops.conga.generator.plugins.fileheader Built-in file header plugins.io.wcm.devops.conga.generator.plugins.postprocessor CONGA post processor plugins.io.wcm.devops.conga.generator.plugins.validator Built-in validator plugins.io.wcm.devops.conga.generator.spi CONGA SPI with interfaces for the supported plugin types.io.wcm.devops.conga.generator.spi.context Context objects for CONGA SPI plugins.io.wcm.devops.conga.generator.spi.export.context Context objects for CONGA Export SPI plugins.io.wcm.devops.conga.generator.util CONGA utilities. -
-
Uses of FileContext in io.wcm.devops.conga.generator.plugins.fileheader
Methods in io.wcm.devops.conga.generator.plugins.fileheader with parameters of type FileContext Modifier and Type Method Description boolean
ConfFileHeader. accepts(FileContext file, FileHeaderContext context)
boolean
JsonFileHeader. accepts(FileContext file, FileHeaderContext context)
boolean
NoneFileHeader. accepts(FileContext file, FileHeaderContext context)
boolean
UnixShellScriptFileHeader. accepts(FileContext file, FileHeaderContext context)
boolean
WindowsShellScriptFileHeader. accepts(FileContext file, FileHeaderContext context)
boolean
XmlFileHeader. accepts(FileContext file, FileHeaderContext context)
Void
AbstractFileHeader. apply(FileContext file, FileHeaderContext context)
Void
NoneFileHeader. apply(FileContext file, FileHeaderContext context)
Void
XmlFileHeader. apply(FileContext file, FileHeaderContext context)
FileHeaderContext
ConfFileHeader. extract(FileContext file)
FileHeaderContext
JsonFileHeader. extract(FileContext file)
FileHeaderContext
UnixShellScriptFileHeader. extract(FileContext file)
FileHeaderContext
WindowsShellScriptFileHeader. extract(FileContext file)
FileHeaderContext
XmlFileHeader. extract(FileContext file)
protected FileHeaderContext
AbstractFileHeader. extractFileHeaderBetweenBlockStartEnd(FileContext file)
Extract file header from the beginning of file between comment block start and end symbol.protected FileHeaderContext
AbstractFileHeader. extractFileHeaderWithLinePrefixes(FileContext file)
Extract file header from the beginning of file with all lines starting with line prefix.ImplicitApplyOptions
NoneFileHeader. implicitApply(FileContext file, FileHeaderContext context)
-
Uses of FileContext in io.wcm.devops.conga.generator.plugins.postprocessor
Methods in io.wcm.devops.conga.generator.plugins.postprocessor with parameters of type FileContext Modifier and Type Method Description protected void
AbstractPostProcessor. applyFileHeader(FileContext file, FileHeaderContext fileHeader, PostProcessorContext postProcessorContext)
Apply file header to given file.protected FileHeaderContext
AbstractPostProcessor. extractFileHeader(FileContext file, PostProcessorContext postProcessorContext)
Extract file header from given file. -
Uses of FileContext in io.wcm.devops.conga.generator.plugins.validator
Methods in io.wcm.devops.conga.generator.plugins.validator with parameters of type FileContext Modifier and Type Method Description boolean
JsonValidator. accepts(FileContext file, ValidatorContext context)
boolean
NoneValidator. accepts(FileContext file, ValidatorContext context)
boolean
XmlValidator. accepts(FileContext file, ValidatorContext context)
Void
JsonValidator. apply(FileContext file, ValidatorContext context)
Void
NoneValidator. apply(FileContext file, ValidatorContext context)
Void
XmlValidator. apply(FileContext file, ValidatorContext context)
ImplicitApplyOptions
NoneValidator. implicitApply(FileContext file, ValidatorContext context)
-
Uses of FileContext in io.wcm.devops.conga.generator.spi
Methods in io.wcm.devops.conga.generator.spi that return types with arguments of type FileContext Modifier and Type Method Description List<FileContext>
PostProcessorPlugin. apply(FileContext file, PostProcessorContext context)
Applies the post processing.Methods in io.wcm.devops.conga.generator.spi with parameters of type FileContext Modifier and Type Method Description boolean
FilePlugin. accepts(FileContext file, T context)
Checks if the plugin can be applied to the given file.Void
FileHeaderPlugin. apply(FileContext file, FileHeaderContext context)
Applies the comment file header.R
FilePlugin. apply(FileContext file, T context)
Applies the plugin operation.List<FileContext>
PostProcessorPlugin. apply(FileContext file, PostProcessorContext context)
Applies the post processing.Void
ValidatorPlugin. apply(FileContext file, ValidatorContext context)
Validates the given filedefault FileHeaderContext
FileHeaderPlugin. extract(FileContext file)
Extract comment lines from file header.default ImplicitApplyOptions
FileHeaderPlugin. implicitApply(FileContext file, FileHeaderContext context)
Whether to apply this plugin implicitly.ImplicitApplyOptions
FilePlugin. implicitApply(FileContext file, T context)
Whether to apply this plugin implicitly.default ImplicitApplyOptions
PostProcessorPlugin. implicitApply(FileContext file, PostProcessorContext context)
Whether to apply this plugin implicitly.default ImplicitApplyOptions
ValidatorPlugin. implicitApply(FileContext file, ValidatorContext context)
Whether to apply this plugin implicitly. -
Uses of FileContext in io.wcm.devops.conga.generator.spi.context
Methods in io.wcm.devops.conga.generator.spi.context that return FileContext Modifier and Type Method Description FileContext
FileContext. charset(String value)
FileContext
FileContext. charset(Charset value)
FileContext
FileContext. file(File value)
FileContext
FileContext. modelOptions(Map<String,Object> value)
FileContext
FileContext. targetDir(File value)
-
Uses of FileContext in io.wcm.devops.conga.generator.spi.export.context
Methods in io.wcm.devops.conga.generator.spi.export.context that return FileContext Modifier and Type Method Description FileContext
GeneratedFileContext. getFileContext()
Methods in io.wcm.devops.conga.generator.spi.export.context with parameters of type FileContext Modifier and Type Method Description GeneratedFileContext
GeneratedFileContext. fileContext(FileContext value)
-
Uses of FileContext in io.wcm.devops.conga.generator.util
Methods in io.wcm.devops.conga.generator.util with parameters of type FileContext Modifier and Type Method Description static String
FileUtil. getCanonicalPath(FileContext fileContext)
Deprecated, for removal: This API element is subject to removal in a future version.usegetCanonicalPath()
instead.static boolean
FileUtil. matchesExtension(FileContext fileContext, String extension)
Checks file extension
-