Class Store
- java.lang.Object
-
- org.bonitasoft.connectors.rest.model.Store
-
public class Store extends Object
A basic key store to be used in a HTTP request.
-
-
Constructor Summary
Constructors Constructor Description Store()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description KeyStoregenerateKeyStore()Generate the key store based on the options.FilegetFile()File value getter.StringgetPassword()Password value getter.voidsetFile(File file)File value setter.voidsetPassword(String password)Password value setter.
-
-
-
Method Detail
-
generateKeyStore
public KeyStore generateKeyStore() throws KeyStoreException, IOException, NoSuchAlgorithmException, CertificateException
Generate the key store based on the options.- Returns:
- The generated key store.
- Throws:
KeyStoreExceptionIOExceptionCertificateExceptionNoSuchAlgorithmException
-
getFile
public File getFile()
File value getter.- Returns:
- The file value.
-
setFile
public void setFile(File file)
File value setter.- Parameters:
file- The new file value.
-
getPassword
public String getPassword()
Password value getter.- Returns:
- The password value.
-
setPassword
public void setPassword(String password)
Password value setter.- Parameters:
password- The password file value.
-
-