Interface TrustAnchorStore
-
- All Known Subinterfaces:
OpensslTrustAnchorStore
- All Known Implementing Classes:
AbstractTrustAnchorStore,DirectoryTrustAnchorStore,JDKFSTrustAnchorStore,JDKInMemoryTrustAnchorStore,LazyOpensslTrustAnchorStoreImpl,OpensslTrustAnchorStoreImpl,TimedTrustAnchorStoreBase
public interface TrustAnchorStoreImplementations provide trust store material: a list of trusted CA certificates.- Author:
- K. Benedyczak
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddispose()java.util.Set<java.security.cert.TrustAnchor>getTrustAnchors()java.security.cert.X509Certificate[]getTrustedCertificates()longgetUpdateInterval()voidsetUpdateInterval(long newInterval)
-
-
-
Method Detail
-
getTrustAnchors
java.util.Set<java.security.cert.TrustAnchor> getTrustAnchors()
-
getTrustedCertificates
java.security.cert.X509Certificate[] getTrustedCertificates()
-
dispose
void dispose()
-
getUpdateInterval
long getUpdateInterval()
-
setUpdateInterval
void setUpdateInterval(long newInterval)
-
-