Package org.codehaus.mojo.keytool
Interface KeyToolRequest
-
- All Superinterfaces:
org.apache.maven.shared.utils.cli.javatool.JavaToolRequest
- All Known Subinterfaces:
KeyToolRequestWithKeyStoreAndAliasParameters
,KeyToolRequestWithKeyStoreParameters
- All Known Implementing Classes:
AbstractKeyToolRequest
,AbstractKeyToolRequestWithKeyStoreAndAliasParameters
,AbstractKeyToolRequestWithKeyStoreParameters
,KeyToolChangeAliasRequest
,KeyToolChangeKeyPasswordRequest
,KeyToolChangeStorePasswordRequest
,KeyToolDeleteRequest
,KeyToolExportCertificateRequest
,KeyToolGenerateCertificateRequest
,KeyToolGenerateCertificateRequestRequest
,KeyToolGenerateKeyPairRequest
,KeyToolGenerateSecretKeyRequest
,KeyToolImportCertificateRequest
,KeyToolImportKeystoreRequest
,KeyToolListRequest
,KeyToolPrintCertificateRequest
,KeyToolPrintCertificateRequestRequest
,KeyToolPrintCRLFileRequest
public interface KeyToolRequest extends org.apache.maven.shared.utils.cli.javatool.JavaToolRequest
Specifies the common parameters used to control a KeyTool tool invocation.- Since:
- 1.1
- Version:
- $Id$
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String[]
getArguments()
Gets the value of themaxMemory
field.java.io.File
getWorkingDirectory()
Gets the value of theworkingDirectory
field.boolean
isVerbose()
Gets the value of theverbose
field.void
setArguments(java.lang.String[] arguments)
Sets the new given value to the fieldarguments
of the request.void
setVerbose(boolean verbose)
Sets the new given value to the fieldverbose
of the request.void
setWorkingDirectory(java.io.File workingDirectory)
Sets the new given value to the fieldworkingDirectory
of the request.
-
-
-
Method Detail
-
isVerbose
boolean isVerbose()
Gets the value of theverbose
field.- Returns:
- the value of the
verbose
field.
-
getArguments
java.lang.String[] getArguments()
Gets the value of themaxMemory
field.- Returns:
- the value of the
maxMemory
field.
-
getWorkingDirectory
java.io.File getWorkingDirectory()
Gets the value of theworkingDirectory
field.- Returns:
- the value of the
workingDirectory
field.
-
setVerbose
void setVerbose(boolean verbose)
Sets the new given value to the fieldverbose
of the request.- Parameters:
verbose
- the new value of the fieldverbose
.
-
setArguments
void setArguments(java.lang.String[] arguments)
Sets the new given value to the fieldarguments
of the request.- Parameters:
arguments
- the new value of the fieldarguments
.
-
setWorkingDirectory
void setWorkingDirectory(java.io.File workingDirectory)
Sets the new given value to the fieldworkingDirectory
of the request.- Parameters:
workingDirectory
- the new value of the fieldworkingDirectory
.
-
-