Package eu.emi.security.authn.x509
Interface StoreUpdateListener
public interface StoreUpdateListener
Implementations receive information about updates of certificate, CRL stores or OCSP errors.
Most often this listener is used to be notified about update errors and warnings (often not synchronous
with a certificate validation).
-
Nested Class Summary
Nested Classes -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionvoid
loadingNotification
(String location, String type, StoreUpdateListener.Severity level, Exception cause) Informs about an update related to loading of trust related material, like loading or downloading a CA certificate, CRL or others.
-
Field Details
-
CA_CERT
- See Also:
-
CRL
- See Also:
-
EACL_NAMESPACE
- See Also:
-
EUGRIDPMA_NAMESPACE
- See Also:
-
OCSP
- See Also:
-
-
Method Details
-
loadingNotification
void loadingNotification(String location, String type, StoreUpdateListener.Severity level, Exception cause) Informs about an update related to loading of trust related material, like loading or downloading a CA certificate, CRL or others.- Parameters:
location
- not null location of the updated resource (URL or file path)type
- not-null type of resource (CA certificate, CRL files etc)level
- severity of the notificationcause
- an exception thrown by a loading code, typically IOException. Can be null. If not null, message of the exception should contain problem description.
-