Uses of Class
org.codehaus.cargo.container.packager.PackagerType
-
Packages that use PackagerType Package Description org.codehaus.cargo.container.packager org.codehaus.cargo.generic.packager -
-
Uses of PackagerType in org.codehaus.cargo.container.packager
Fields in org.codehaus.cargo.container.packager declared as PackagerType Modifier and Type Field Description static PackagerType
PackagerType. DIRECTORY
Represents a directory packager, ie a packager that creates a package in a given directory.Methods in org.codehaus.cargo.container.packager that return PackagerType Modifier and Type Method Description static PackagerType
PackagerType. toType(String typeAsString)
Transform a type represented as a string into aPackagerType
object. -
Uses of PackagerType in org.codehaus.cargo.generic.packager
Methods in org.codehaus.cargo.generic.packager with parameters of type PackagerType Modifier and Type Method Description Packager
DefaultPackagerFactory. createPackager(String containerId, PackagerType packagerType, String outputLocation)
Create aPackager
instance matching the specified container id.Packager
PackagerFactory. createPackager(String containerId, PackagerType packagerType, String outputLocation)
Create aPackager
instance matching the specified container id.boolean
DefaultPackagerFactory. isPackagerRegistered(String containerId, PackagerType packagerType)
boolean
PackagerFactory. isPackagerRegistered(String containerId, PackagerType packagerType)
void
DefaultPackagerFactory. registerPackager(String containerId, PackagerType packagerType, Class<? extends Packager> packagerClass)
Registers aPackager
implementation.void
DefaultPackagerFactory. registerPackager(String containerId, PackagerType packagerType, String packagerClassName)
Registers a packager using a class specified as a String.void
PackagerFactory. registerPackager(String containerId, PackagerType packagerType, Class<? extends Packager> packagerClass)
Registers aPackager
implementation.
-