Uses of Class
io.wcm.devops.conga.generator.spi.context.UrlFilePluginContext
-
Packages that use UrlFilePluginContext Package Description io.wcm.devops.conga.generator CONGA environment and file generator.io.wcm.devops.conga.generator.plugins.urlfile CONGA plugins for getting files from external sources.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. -
-
Uses of UrlFilePluginContext in io.wcm.devops.conga.generator
Constructors in io.wcm.devops.conga.generator with parameters of type UrlFilePluginContext Constructor Description UrlFileManager(PluginManager pluginManager, UrlFilePluginContext context)
-
Uses of UrlFilePluginContext in io.wcm.devops.conga.generator.plugins.urlfile
Methods in io.wcm.devops.conga.generator.plugins.urlfile with parameters of type UrlFilePluginContext Modifier and Type Method Description boolean
ClasspathUrlFilePlugin. accepts(String url, UrlFilePluginContext context)
boolean
FilesystemUrlFilePlugin. accepts(String url, UrlFilePluginContext context)
boolean
HttpUrlFilePlugin. accepts(String url, UrlFilePluginContext context)
void
FilesystemUrlFilePlugin. deleteFile(String url, UrlFilePluginContext context)
InputStream
ClasspathUrlFilePlugin. getFile(String url, UrlFilePluginContext context)
InputStream
FilesystemUrlFilePlugin. getFile(String url, UrlFilePluginContext context)
InputStream
HttpUrlFilePlugin. getFile(String url, UrlFilePluginContext context)
String
ClasspathUrlFilePlugin. getFileName(String url, UrlFilePluginContext context)
String
FilesystemUrlFilePlugin. getFileName(String url, UrlFilePluginContext context)
String
HttpUrlFilePlugin. getFileName(String url, UrlFilePluginContext context)
URL
ClasspathUrlFilePlugin. getFileUrl(String url, UrlFilePluginContext context)
URL
FilesystemUrlFilePlugin. getFileUrl(String url, UrlFilePluginContext context)
URL
HttpUrlFilePlugin. getFileUrl(String url, UrlFilePluginContext context)
-
Uses of UrlFilePluginContext in io.wcm.devops.conga.generator.spi
Methods in io.wcm.devops.conga.generator.spi with parameters of type UrlFilePluginContext Modifier and Type Method Description boolean
UrlFilePlugin. accepts(String url, UrlFilePluginContext context)
Checks if the plugin can be applied to the given URL.default void
UrlFilePlugin. deleteFile(String url, UrlFilePluginContext context)
Delete file with given URL.InputStream
UrlFilePlugin. getFile(String url, UrlFilePluginContext context)
Get binary data of external file.String
UrlFilePlugin. getFileName(String url, UrlFilePluginContext context)
Get filename for external file.default URL
UrlFilePlugin. getFileUrl(String url, UrlFilePluginContext context)
Get URL to external file.default List<URL>
UrlFilePlugin. getFileUrlsWithDependencies(String url, UrlFilePluginContext context)
Get URLs of transitive dependencies of external file.default File
UrlFilePlugin. getLocalFile(String url, UrlFilePluginContext context)
Get local file reference to given URL.default boolean
UrlFilePlugin. isLocalFile(String url, UrlFilePluginContext context)
Checks if the given file is a file from the local file system and can be safely referenced via symlink. -
Uses of UrlFilePluginContext in io.wcm.devops.conga.generator.spi.context
Methods in io.wcm.devops.conga.generator.spi.context that return UrlFilePluginContext Modifier and Type Method Description UrlFilePluginContext
UrlFilePluginContext. baseDir(File value)
UrlFilePluginContext
UrlFilePluginContext. baseNodeDir(File value)
UrlFilePluginContext
UrlFilePluginContext. environment(Environment value)
UrlFilePluginContext
UrlFilePluginContext. resourceClassLoader(ClassLoader value)
-