Class Packager
- java.lang.Object
-
- org.codehaus.cargo.maven3.configuration.Packager
-
public class Packager extends Object
Holds configuration data for the<packager>
tag used to configure the plugin in thepom.xml
file.
-
-
Constructor Summary
Constructors Constructor Description Packager()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Packager
createPackager(Container container)
Create packager.String
getImplementation()
String
getOutputLocation()
String
getType()
void
setImplementation(String implementation)
void
setOutputLocation(String outputLocation)
void
setType(String type)
-
-
-
Method Detail
-
getImplementation
public String getImplementation()
- Returns:
- Packager implementation.
-
setImplementation
public void setImplementation(String implementation)
- Parameters:
implementation
- Packager implementation.
-
getType
public String getType()
- Returns:
- Packager type.
-
setType
public void setType(String type)
- Parameters:
type
- Packager type.
-
getOutputLocation
public String getOutputLocation()
- Returns:
- The location where the package will be generated. For example for a Directory Packager this will be the directory into which the package will be generated.
-
setOutputLocation
public void setOutputLocation(String outputLocation)
- Parameters:
outputLocation
- The location where the package will be generated. For example for a Directory Packager this will be the directory into which the package will be generated.
-
-