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
- Author:
- tchemit
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAlias()Gets the value of thealiasfield.booleanisPasswordProtected()Gets the value of thepasswordProtectedfield.voidsetAlias(String alias)Sets the new given value to the fieldaliasof the request.voidsetPasswordProtected(boolean passwordProtected)setPasswordProtected.-
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
String getAlias()
Gets the value of thealiasfield.- Returns:
- the value of the
aliasfield.
-
setAlias
void setAlias(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)
setPasswordProtected.
- Parameters:
passwordProtected- value of the fieldpasswordProtectedto set
-
-