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
- Author:
- tchemit
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetKeystore()Gets the value of thekeystorefield.StringgetProviderarg()Gets the value of theproviderargfield.StringgetProviderclass()Gets the value of theproviderclassfield.StringgetProvidername()Gets the value of theprovidernamefield.StringgetProviderpath()Gets the value of theproviderpathfield.StringgetStorepass()Gets the value of thestorepassfield.StringgetStoretype()Gets the value of thestoretypefield.voidsetKeystore(String keystore)Sets the new given value to the fieldkeystoreof the request.voidsetProviderarg(String providerarg)setProviderarg.voidsetProviderclass(String providerclass)setProviderclass.voidsetProvidername(String providername)setProvidername.voidsetProviderpath(String providerpath)setProviderpath.voidsetStorepass(String storepass)Sets the new given value to the fieldstorepassof the request.voidsetStoretype(String storetype)Sets the new given value to the fieldstoretypeof 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
String getKeystore()
Gets the value of thekeystorefield.- Returns:
- the value of the
keystorefield.
-
setKeystore
void setKeystore(String keystore)
Sets the new given value to the fieldkeystoreof the request.- Parameters:
keystore- the new value of the fieldkeystore.
-
getStoretype
String getStoretype()
Gets the value of thestoretypefield.- Returns:
- the value of the
storetypefield.
-
setStoretype
void setStoretype(String storetype)
Sets the new given value to the fieldstoretypeof the request.- Parameters:
storetype- the new value of the fieldstoretype.
-
getStorepass
String getStorepass()
Gets the value of thestorepassfield.- Returns:
- the value of the
storepassfield.
-
setStorepass
void setStorepass(String storepass)
Sets the new given value to the fieldstorepassof the request.- Parameters:
storepass- the new value of the fieldstorepass.
-
getProvidername
String getProvidername()
Gets the value of theprovidernamefield.- Returns:
- the value of the
providernamefield
-
setProvidername
void setProvidername(String providername)
setProvidername.
- Parameters:
providername- value of the fieldprovidernameto set
-
getProviderclass
String getProviderclass()
Gets the value of theproviderclassfield.- Returns:
- the value of the
providerclassfield
-
setProviderclass
void setProviderclass(String providerclass)
setProviderclass.
- Parameters:
providerclass- value of the fieldproviderclassto set
-
getProviderarg
String getProviderarg()
Gets the value of theproviderargfield.- Returns:
- the value of the
providerargfield
-
setProviderarg
void setProviderarg(String providerarg)
setProviderarg.
- Parameters:
providerarg- value of the fieldproviderargto set
-
getProviderpath
String getProviderpath()
Gets the value of theproviderpathfield.- Returns:
- the value of the
providerpathfield
-
setProviderpath
void setProviderpath(String providerpath)
setProviderpath.
- Parameters:
providerpath- value of the fieldproviderpathto set
-
-