Interface TrustAnchorStore
-
- All Known Subinterfaces:
OpensslTrustAnchorStore
- All Known Implementing Classes:
AbstractTrustAnchorStore
,DirectoryTrustAnchorStore
,JDKFSTrustAnchorStore
,JDKInMemoryTrustAnchorStore
,LazyOpensslTrustAnchorStoreImpl
,OpensslTrustAnchorStoreImpl
,TimedTrustAnchorStoreBase
public interface TrustAnchorStore
Implementations 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 void
dispose()
java.util.Set<java.security.cert.TrustAnchor>
getTrustAnchors()
java.security.cert.X509Certificate[]
getTrustedCertificates()
long
getUpdateInterval()
void
setUpdateInterval(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)
-
-