Package net.webpdf.wsclient.openapi
Class AuthUserCertificates
- java.lang.Object
-
- net.webpdf.wsclient.openapi.AuthUserCertificates
-
public class AuthUserCertificates extends Object
Contains the list of certificates and keystores available for the user in the current session.
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_CERTIFICATESstatic StringJSON_PROPERTY_KEY_STORES
-
Constructor Summary
Constructors Constructor Description AuthUserCertificates()AuthUserCertificates(List<CertificateEntry> certificates, List<KeyStoreEntry> keyStores)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)@NotNull List<CertificateEntry>getCertificates()List of certificates@NotNull List<KeyStoreEntry>getKeyStores()List of keystoresinthashCode()StringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_CERTIFICATES
public static final String JSON_PROPERTY_CERTIFICATES
- See Also:
- Constant Field Values
-
JSON_PROPERTY_KEY_STORES
public static final String JSON_PROPERTY_KEY_STORES
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
AuthUserCertificates
public AuthUserCertificates()
-
AuthUserCertificates
public AuthUserCertificates(List<CertificateEntry> certificates, List<KeyStoreEntry> keyStores)
-
-
Method Detail
-
getCertificates
@NotNull public @NotNull List<CertificateEntry> getCertificates()
List of certificates- Returns:
- certificates
-
getKeyStores
@NotNull public @NotNull List<KeyStoreEntry> getKeyStores()
List of keystores- Returns:
- keyStores
-
-