Package org.codehaus.mojo.keytool
Interface KeyToolRequestWithKeyStoreParameters
-
- All Superinterfaces:
org.apache.maven.shared.utils.cli.javatool.JavaToolRequest
,KeyToolRequest
- All Known Subinterfaces:
KeyToolRequestWithKeyStoreAndAliasParameters
- All Known Implementing Classes:
AbstractKeyToolRequestWithKeyStoreAndAliasParameters
,AbstractKeyToolRequestWithKeyStoreParameters
,KeyToolChangeAliasRequest
,KeyToolChangeKeyPasswordRequest
,KeyToolChangeStorePasswordRequest
,KeyToolDeleteRequest
,KeyToolExportCertificateRequest
,KeyToolGenerateCertificateRequest
,KeyToolGenerateCertificateRequestRequest
,KeyToolGenerateKeyPairRequest
,KeyToolGenerateSecretKeyRequest
,KeyToolImportCertificateRequest
,KeyToolListRequest
public interface KeyToolRequestWithKeyStoreParameters extends KeyToolRequest
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
getKeystore()
Gets the value of thekeystore
field.java.lang.String
getProviderarg()
Gets the value of theproviderarg
field.java.lang.String
getProviderclass()
Gets the value of theproviderclass
field.java.lang.String
getProvidername()
Gets the value of theprovidername
field.java.lang.String
getProviderpath()
Gets the value of theproviderpath
field.java.lang.String
getStorepass()
Gets the value of thestorepass
field.java.lang.String
getStoretype()
Gets the value of thestoretype
field.void
setKeystore(java.lang.String keystore)
Sets the new given value to the fieldkeystore
of the request.void
setProviderarg(java.lang.String providerarg)
void
setProviderclass(java.lang.String providerclass)
void
setProvidername(java.lang.String providername)
void
setProviderpath(java.lang.String providerpath)
void
setStorepass(java.lang.String storepass)
Sets the new given value to the fieldstorepass
of the request.void
setStoretype(java.lang.String storetype)
Sets the new given value to the fieldstoretype
of the request.-
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
-
-
-
-
Method Detail
-
getKeystore
java.lang.String getKeystore()
Gets the value of thekeystore
field.- Returns:
- the value of the
keystore
field.
-
setKeystore
void setKeystore(java.lang.String keystore)
Sets the new given value to the fieldkeystore
of the request.- Parameters:
keystore
- the new value of the fieldkeystore
.
-
getStoretype
java.lang.String getStoretype()
Gets the value of thestoretype
field.- Returns:
- the value of the
storetype
field.
-
setStoretype
void setStoretype(java.lang.String storetype)
Sets the new given value to the fieldstoretype
of the request.- Parameters:
storetype
- the new value of the fieldstoretype
.
-
getStorepass
java.lang.String getStorepass()
Gets the value of thestorepass
field.- Returns:
- the value of the
storepass
field.
-
setStorepass
void setStorepass(java.lang.String storepass)
Sets the new given value to the fieldstorepass
of the request.- Parameters:
storepass
- the new value of the fieldstorepass
.
-
getProvidername
java.lang.String getProvidername()
Gets the value of theprovidername
field.- Returns:
- the value of the
providername
field
-
setProvidername
void setProvidername(java.lang.String providername)
- Parameters:
providername
- value of the fieldprovidername
to set
-
getProviderclass
java.lang.String getProviderclass()
Gets the value of theproviderclass
field.- Returns:
- the value of the
providerclass
field
-
setProviderclass
void setProviderclass(java.lang.String providerclass)
- Parameters:
providerclass
- value of the fieldproviderclass
to set
-
getProviderarg
java.lang.String getProviderarg()
Gets the value of theproviderarg
field.- Returns:
- the value of the
providerarg
field
-
setProviderarg
void setProviderarg(java.lang.String providerarg)
- Parameters:
providerarg
- value of the fieldproviderarg
to set
-
getProviderpath
java.lang.String getProviderpath()
Gets the value of theproviderpath
field.- Returns:
- the value of the
providerpath
field
-
setProviderpath
void setProviderpath(java.lang.String providerpath)
- Parameters:
providerpath
- value of the fieldproviderpath
to set
-
-