Class DefaultZipExporterClassResources
- java.lang.Object
-
- de.akquinet.jbosscc.guttenbase.defaults.impl.DefaultZipExporterClassResources
-
- All Implemented Interfaces:
ZipExporterClassResources
public class DefaultZipExporterClassResources extends Object implements ZipExporterClassResources
Default implementation.© 2012-2034 akquinet tech@spree
- Author:
- M. Dahm
-
-
Constructor Summary
Constructors Constructor Description DefaultZipExporterClassResources()
-
Method Summary
All Methods Instance Methods Concrete 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
public Class<?> getStartupClass()
Description copied from interface:ZipExporterClassResources
Startup class that will be written into the MANIFEST file.- Specified by:
getStartupClass
in interfaceZipExporterClassResources
-
getClassResources
public List<Class<?>> getClassResources()
Description copied from interface:ZipExporterClassResources
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.- Specified by:
getClassResources
in interfaceZipExporterClassResources
-
getUrlResources
public Map<String,URL> getUrlResources()
Description copied from interface:ZipExporterClassResources
List of other resources to add to the dump, e.g. generated SQL scripts. The map key will be used as the name of the ZIP file entry. The contents of the map value will be dumped into the zip entry.- Specified by:
getUrlResources
in interfaceZipExporterClassResources
-
-