Apache CXF API

org.apache.cxf.xkms.x509.repo
Interface CertificateRepo

All Known Implementing Classes:
FileCertificateRepo, LdapCertificateRepo

public interface CertificateRepo


Method Summary
 X509Certificate findByEndpoint(String endpoint)
           
 X509Certificate findByIssuerSerial(String issuer, String serial)
           
 X509Certificate findByServiceName(String serviceName)
           
 X509Certificate findBySubjectDn(String dn)
           
 List<X509Certificate> getCaCerts()
           
 List<X509CRL> getCRLs()
           
 List<X509Certificate> getTrustedCaCerts()
           
 void saveCertificate(X509Certificate cert, UseKeyWithType key)
           
 

Method Detail

getTrustedCaCerts

List<X509Certificate> getTrustedCaCerts()

getCaCerts

List<X509Certificate> getCaCerts()

getCRLs

List<X509CRL> getCRLs()

saveCertificate

void saveCertificate(X509Certificate cert,
                     UseKeyWithType key)

findBySubjectDn

X509Certificate findBySubjectDn(String dn)

findByServiceName

X509Certificate findByServiceName(String serviceName)

findByEndpoint

X509Certificate findByEndpoint(String endpoint)

findByIssuerSerial

X509Certificate findByIssuerSerial(String issuer,
                                   String serial)

Apache CXF API

Apache CXF