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.String
getAlias()
Gets the value of thealias
field.boolean
isPasswordProtected()
Gets the value of thepasswordProtected
field.void
setAlias(java.lang.String alias)
Sets the new given value to the fieldalias
of the request.void
setPasswordProtected(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 thealias
field.- Returns:
- the value of the
alias
field.
-
setAlias
void setAlias(java.lang.String alias)
Sets the new given value to the fieldalias
of the request.- Parameters:
alias
- the new value of the fieldalias
.
-
isPasswordProtected
boolean isPasswordProtected()
Gets the value of thepasswordProtected
field.- Returns:
- the value of the
passwordProtected
field
-
setPasswordProtected
void setPasswordProtected(boolean passwordProtected)
- Parameters:
passwordProtected
- value of the fieldpasswordProtected
to set
-
-