Skip navigation links
ShrinkWrap Spring Boot :: API 0.0.1
A D G O S 

A

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.

D

deleteDefaultLauncherPackage() - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
Deletes all classes in the default Package from the Archive launcher class path.
SubPackages are excluded.
deleteLauncherClass(Class<?>) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
Deletes the Class, and all member (inner) Classes from the Archive launcher class path.
deleteLauncherClass(String) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
Deletes the Class, and all member (inner) Classes, with the specified fully-qualified name, loaded by the Thread Context ClassLoader, from the Archive launcher class path.
deleteLauncherClasses(Class<?>...) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
Deletes the Classes, and all member (inner) Classes from the Archive launcher class path.
deleteLauncherPackage(Package) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
Deletes all classes in the specified Package from the Archive launcher class path.
SubPackages are excluded.
deleteLauncherPackage(String) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
Deletes all classes in the specified Package from the Archive launcher class path.
SubPackages are excluded.
deleteLauncherPackages(boolean, Package...) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
Deletes all classes in the specified Packages from the Archive launcher class path.
deleteLauncherPackages(boolean, String...) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
Delete all classes in the specified Packages from the Archive launcher class path.
deleteLauncherPackages(boolean, Filter<ArchivePath>, Package...) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
Deletes all classes accepted by the filter in the specified Packages from the Archive launcher class path.
The ArchivePath returned to the filter is the ArchivePath of the class, not the final location.
deleteLauncherPackages(boolean, Filter<ArchivePath>, String...) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
Delete all classes accepted by the filter in the specified Packages from the Archive launcher class path.
The ArchivePath returned to the filter is the ArchivePath of the class, not the final location.

G

getBootInfPath() - Method in interface org.shrinkwrap.springboot.api.SpringBootLayout
 
getClassesPath() - Method in interface org.shrinkwrap.springboot.api.SpringBootLayout
 
getLauncherClassName() - Method in interface org.shrinkwrap.springboot.api.SpringBootLayout
 
getLibrariesPath() - Method in interface org.shrinkwrap.springboot.api.SpringBootLayout
 
getWebInfPath() - Method in interface org.shrinkwrap.springboot.api.SpringBootLayout
 
getWebPath() - Method in interface org.shrinkwrap.springboot.api.SpringBootLayout
 

O

org.shrinkwrap.springboot.api - package org.shrinkwrap.springboot.api
 
org.shrinkwrap.springboot.api.container - package org.shrinkwrap.springboot.api.container
 
org.shrinkwrap.springboot.api.spec - package org.shrinkwrap.springboot.api.spec
 

S

setSpringBootLayout(SpringBootLayout) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
 
setSpringBootManifest(String) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
 
setSpringBootManifest(String, String) - Method in interface org.shrinkwrap.springboot.api.container.SpringBootContainer
 
SpringBootArchive - Interface in org.shrinkwrap.springboot.api.spec
Implements Launching executable JARS for Spring Boot apps, following the description of the format at http://docs.spring.io/spring-boot/docs/1.3.7.RELEASE/reference/htmlsingle/#executable-jar and http://docs.spring.io/spring-boot/docs/1.4.4.RELEASE/reference/htmlsingle/#executable-jar and http://docs.spring.io/spring-boot/docs/1.5.1.RELEASE/reference/htmlsingle/#executable-jar The layout will define the structure of the executable.
SpringBootContainer<T extends org.jboss.shrinkwrap.api.Archive<T>> - Interface in org.shrinkwrap.springboot.api.container
Defines the contract for a component capable of storing spring-boot-related resources.
SpringBootLayout - Interface in org.shrinkwrap.springboot.api
Defines the structure of the SpringBootLayout archive
A D G O S 
Skip navigation links
ShrinkWrap Spring Boot :: API 0.0.1

Copyright © 2017 JBoss by Red Hat. All rights reserved.