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.JavaToolRequestSpecifies the common parameters used to control a KeyTool tool invocation.- Since:
- 1.1
- Author:
- tchemit
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String[]getArguments()Gets the value of themaxMemoryfield.FilegetWorkingDirectory()Gets the value of theworkingDirectoryfield.booleanisVerbose()Gets the value of theverbosefield.voidsetArguments(String[] arguments)Sets the new given value to the fieldargumentsof the request.voidsetVerbose(boolean verbose)Sets the new given value to the fieldverboseof the request.voidsetWorkingDirectory(File workingDirectory)Sets the new given value to the fieldworkingDirectoryof the request.
-
-
-
Method Detail
-
isVerbose
boolean isVerbose()
Gets the value of theverbosefield.- Returns:
- the value of the
verbosefield.
-
getArguments
String[] getArguments()
Gets the value of themaxMemoryfield.- Returns:
- the value of the
maxMemoryfield.
-
getWorkingDirectory
File getWorkingDirectory()
Gets the value of theworkingDirectoryfield.- Returns:
- the value of the
workingDirectoryfield.
-
setVerbose
void setVerbose(boolean verbose)
Sets the new given value to the fieldverboseof the request.- Parameters:
verbose- the new value of the fieldverbose.
-
setArguments
void setArguments(String[] arguments)
Sets the new given value to the fieldargumentsof the request.- Parameters:
arguments- the new value of the fieldarguments.
-
setWorkingDirectory
void setWorkingDirectory(File workingDirectory)
Sets the new given value to the fieldworkingDirectoryof the request.- Parameters:
workingDirectory- the new value of the fieldworkingDirectory.
-
-