Package net.webpdf.wsclient.openapi
Class AdminConnectorKeyStore
- java.lang.Object
-
- net.webpdf.wsclient.openapi.AdminConnectorKeyStore
-
public class AdminConnectorKeyStore extends Object
Lists all contents of the keystore (e.g. it´s certificates and raw data), that shall be used by theserver´s secured SSL connectors.
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_CERTIFICATESstatic StringJSON_PROPERTY_KEY_STORE_CONTENT
-
Constructor Summary
Constructors Constructor Description AdminConnectorKeyStore()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AdminConnectorKeyStoreaddCertificatesItem(CertificateEntry certificatesItem)AdminConnectorKeyStorecertificates(List<CertificateEntry> certificates)booleanequals(Object o)@Nullable List<CertificateEntry>getCertificates()Defines the certificates contained in the keystore.@Nullable StringgetKeyStoreContent()The raw BASE64 encoded contents of a keystore file.inthashCode()AdminConnectorKeyStorekeyStoreContent(String keyStoreContent)voidsetCertificates(List<CertificateEntry> certificates)voidsetKeyStoreContent(String keyStoreContent)StringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_CERTIFICATES
public static final String JSON_PROPERTY_CERTIFICATES
- See Also:
- Constant Field Values
-
JSON_PROPERTY_KEY_STORE_CONTENT
public static final String JSON_PROPERTY_KEY_STORE_CONTENT
- See Also:
- Constant Field Values
-
-
Method Detail
-
certificates
public AdminConnectorKeyStore certificates(List<CertificateEntry> certificates)
-
addCertificatesItem
public AdminConnectorKeyStore addCertificatesItem(CertificateEntry certificatesItem)
-
getCertificates
@Nullable public @Nullable List<CertificateEntry> getCertificates()
Defines the certificates contained in the keystore.- Returns:
- certificates
-
setCertificates
public void setCertificates(List<CertificateEntry> certificates)
-
keyStoreContent
public AdminConnectorKeyStore keyStoreContent(String keyStoreContent)
-
getKeyStoreContent
@Nullable public @Nullable String getKeyStoreContent()
The raw BASE64 encoded contents of a keystore file.- Returns:
- keyStoreContent
-
setKeyStoreContent
public void setKeyStoreContent(String keyStoreContent)
-
-