Interface ZipExporterClassResources
-
- All Known Implementing Classes:
DefaultZipExporterClassResources
public interface ZipExporterClassResources
When exporting to e JAR/ZIP file we allow to add custom classes and resources to the resultiung JAR.This allows to create a self-contained executable JAR that will startup with a Main class customizable by the framework user.
© 2012-2034 akquinet tech@spree
- Author:
- M. Dahm
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Class<?>>
getClassResources()
List of classes that need to be added to the JAR.Class<?>
getStartupClass()
Startup class that will be written into the MANIFEST file.Map<String,URL>
getUrlResources()
List of other resources to add to the dump, e.g. generated SQL scripts.
-
-
-
Method Detail
-
getStartupClass
Class<?> getStartupClass()
Startup class that will be written into the MANIFEST file.
-
getClassResources
List<Class<?>> getClassResources()
List of classes that need to be added to the JAR. I.e. all resources found on the same originating resource (whether from file system or JAR) will be added to the JAR, too. The list should contain the startup class as the first entry.
-
-