- addAsBootInfResource(String) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds the resource as a BOOT-INF resource to the container, returning the container itself.
- addAsBootInfResource(File) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds the
File as a BOOT-INF resource to the container, returning the container itself.
- addAsBootInfResource(String, String) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds the resource as a BOOT-INF resource to the container, returning the container itself.
- addAsBootInfResource(File, String) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds the
File as a BOOT-INF resource to the container, returning the container itself.
- addAsBootInfResource(URL, String) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds the
URL as a BOOT-INF resource to the container, returning the container itself.
- addAsBootInfResource(Asset, String) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds the Asset as a BOOT-INF resource to the container, returning the container itself.
- addAsBootInfResource(String, ArchivePath) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds the resource as a BOOT-INF resource to the container, returning the container itself.
- addAsBootInfResource(File, ArchivePath) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds the
File as a BOOT-INF resource to the container, returning the container itself.
- addAsBootInfResource(URL, ArchivePath) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds the
URL as a BOOT-INF resource to the container, returning the container itself.
- addAsBootInfResource(Asset, ArchivePath) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds the Asset as a BOOT-INF resource to the container, returning the container itself.
- addAsBootInfResource(Package, String) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds the resource as a BOOT-INF resource to the container, returning the container itself.
- addAsBootInfResource(Package, String, String) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds the resource as a BOOT-INF resource to a specific path inside the container, returning the container itself.
- addAsBootInfResource(Package, String, ArchivePath) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds the resource as a BOOT-INF resource to a specific path inside the container, returning the container itself.
- addAsBootInfResources(Package, String...) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds the resources inside the package as multiple BOOT-INF resources to the container, returning the container
itself.
- addAsLauncherLibraries(Archive<?>...) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Add multiple Archives to this Archive as launcher libraries, returning the container itself.
- addAsLauncherLibraries(Collection<? extends Archive<?>>) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Add multiple Archives to this Archive as launcher libraries, returning the container itself.
- addAsLauncherLibraries(Archive<?>[]...) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Add multiple Archives to this Archive as llauncher libraries, returning the container itself.
- addAsLauncherLibrary(Archive<?>) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Add another Archive to this Archive as a launcher library, returning the container itself.
- addDefaultLauncherPackage() - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds all classes in the default
Package to the
Archive as part of the launcher class path.
SubPackages are excluded.
- addLauncherClass(Class<?>) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds the
Class, and all member (inner)
Classes to the
Archive as part of the launcher
class path.
- addLauncherClass(String) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds the
Class, and all member (inner)
Classes, with the specified fully-qualified name, loaded
by the Thread Context
ClassLoader, to the
Archive as part of the launcher class path.
- addLauncherClass(String, ClassLoader) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds the
Class, and all member (inner) @link{Class}es, with the specified fully-qualified name, loaded by
the specified
ClassLoader, to the
Archive as part of the launcher class path.
- addLauncherClasses(Class<?>...) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds the
Classes, and all member (inner)
Classes to the
Archive as part of the launcher
class path.
- addLauncherPackage(String) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds all classes in the specified
Package to the
Archive as part of the launcher class path.
SubPackages are excluded.
- addLauncherPackages(boolean, Package...) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds all classes in the specified
Packages to the
Archive as part of the launcher class path.
- addLauncherPackages(boolean, Filter<ArchivePath>, Package...) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds all classes accepted by the filter in the specified
Packages to the
Archive as part of the
launcher class path.
The
ArchivePath returned to the filter is the
ArchivePath of the class, not the final location.
- addLauncherPackages(boolean, String...) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds all classes in the specified
Packages to the
Archive as part of the launcher class path.
- addLauncherPackages(boolean, Filter<ArchivePath>, String...) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds all classes accepted by the filter in the specified
Packages to the
Archive as part of the
launcher class path.
The
ArchivePath returned to the filter is the
ArchivePath of the class, not the final location.
- addPackage(Package) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
-
Adds all classes in the specified
Package to the
Archive as part of the launcher class path.
SubPackages are excluded.