Package org.codehaus.mojo.keytool
Interface KeyToolRequestWithKeyStoreAndAliasParameters
-
- All Superinterfaces:
org.apache.maven.shared.utils.cli.javatool.JavaToolRequest,KeyToolRequest,KeyToolRequestWithKeyStoreParameters
- All Known Implementing Classes:
AbstractKeyToolRequestWithKeyStoreAndAliasParameters,KeyToolChangeAliasRequest,KeyToolChangeKeyPasswordRequest,KeyToolDeleteRequest,KeyToolExportCertificateRequest,KeyToolGenerateCertificateRequest,KeyToolGenerateCertificateRequestRequest,KeyToolGenerateKeyPairRequest,KeyToolGenerateSecretKeyRequest,KeyToolImportCertificateRequest,KeyToolListRequest
public interface KeyToolRequestWithKeyStoreAndAliasParameters extends KeyToolRequestWithKeyStoreParameters
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.StringgetAlias()Gets the value of thealiasfield.booleanisPasswordProtected()Gets the value of thepasswordProtectedfield.voidsetAlias(java.lang.String alias)Sets the new given value to the fieldaliasof the request.voidsetPasswordProtected(boolean passwordProtected)-
Methods inherited from interface org.apache.maven.shared.utils.cli.javatool.JavaToolRequest
getSystemErrorStreamConsumer, getSystemOutStreamConsumer, setSystemErrorStreamConsumer, setSystemOutStreamConsumer
-
Methods inherited from interface org.codehaus.mojo.keytool.KeyToolRequest
getArguments, getWorkingDirectory, isVerbose, setArguments, setVerbose, setWorkingDirectory
-
Methods inherited from interface org.codehaus.mojo.keytool.KeyToolRequestWithKeyStoreParameters
getKeystore, getProviderarg, getProviderclass, getProvidername, getProviderpath, getStorepass, getStoretype, setKeystore, setProviderarg, setProviderclass, setProvidername, setProviderpath, setStorepass, setStoretype
-
-
-
-
Method Detail
-
getAlias
java.lang.String getAlias()
Gets the value of thealiasfield.- Returns:
- the value of the
aliasfield.
-
setAlias
void setAlias(java.lang.String alias)
Sets the new given value to the fieldaliasof the request.- Parameters:
alias- the new value of the fieldalias.
-
isPasswordProtected
boolean isPasswordProtected()
Gets the value of thepasswordProtectedfield.- Returns:
- the value of the
passwordProtectedfield
-
setPasswordProtected
void setPasswordProtected(boolean passwordProtected)
- Parameters:
passwordProtected- value of the fieldpasswordProtectedto set
-
-