public interface CertificateService
| Modifier and Type | Method and Description |
|---|---|
void |
addCertificates(Collection<org.nhindirect.config.store.Certificate> certs)
Add a Certificate.
|
boolean |
contains(org.nhindirect.config.store.Certificate cert)
Determines if a certificate exists in the certificate store.
|
org.nhindirect.config.store.Certificate |
getCertificate(String owner,
String thumbprint,
CertificateGetOptions options)
Get a Certificate.
|
Collection<org.nhindirect.config.store.Certificate> |
getCertificates(Collection<Long> certificateIds,
CertificateGetOptions options)
Get a collection of Certificates.
|
Collection<org.nhindirect.config.store.Certificate> |
getCertificatesForOwner(String owner,
CertificateGetOptions options)
Get a collection of Certificates for an owner.
|
Collection<org.nhindirect.config.store.Certificate> |
listCertificates(long lastCertificateId,
int maxResults,
CertificateGetOptions options)
Get a collection of Certificates.
|
void |
removeCertificates(Collection<Long> certificateIds)
Remove a Certificate.
|
void |
removeCertificatesForOwner(String owner)
Remove the Certificates for an owner.
|
void |
setCertificateStatus(Collection<Long> certificateIds,
org.nhindirect.config.store.EntityStatus status)
Set a Certificate status.
|
void |
setCertificateStatusForOwner(String owner,
org.nhindirect.config.store.EntityStatus status)
Set the Certificate status for an owner.
|
void addCertificates(Collection<org.nhindirect.config.store.Certificate> certs) throws ConfigurationServiceException
certs - The Certificate.ConfigurationServiceExceptionorg.nhindirect.config.store.Certificate getCertificate(String owner, String thumbprint, CertificateGetOptions options) throws ConfigurationServiceException
owner - The Certificate owner.thumbprint - The Certificate thumbprint.options - The Certificate options.ConfigurationServiceExceptionCollection<org.nhindirect.config.store.Certificate> getCertificates(Collection<Long> certificateIds, CertificateGetOptions options) throws ConfigurationServiceException
certificateIds - A collection of Certificate IDs.options - The Certificate options.ConfigurationServiceExceptionCollection<org.nhindirect.config.store.Certificate> getCertificatesForOwner(String owner, CertificateGetOptions options) throws ConfigurationServiceException
owner - The Certificate owner.options - The Certificate options.ConfigurationServiceExceptionvoid setCertificateStatus(Collection<Long> certificateIds, org.nhindirect.config.store.EntityStatus status) throws ConfigurationServiceException
certificateIds - A collection of Certificates.status - The Certificate status.ConfigurationServiceExceptionvoid setCertificateStatusForOwner(String owner, org.nhindirect.config.store.EntityStatus status) throws ConfigurationServiceException
owner - The Certificate owner.status - The Certificate status.ConfigurationServiceExceptionvoid removeCertificates(Collection<Long> certificateIds) throws ConfigurationServiceException
certificateIds - A collection of Certificate IDs.ConfigurationServiceExceptionvoid removeCertificatesForOwner(String owner) throws ConfigurationServiceException
owner - The Certificate owner.ConfigurationServiceExceptionCollection<org.nhindirect.config.store.Certificate> listCertificates(long lastCertificateId, int maxResults, CertificateGetOptions options) throws ConfigurationServiceException
lastCertificateId - The last Certificate ID.maxResults - The maximum number of results.options - The Certificate options.ConfigurationServiceExceptionboolean contains(org.nhindirect.config.store.Certificate cert)
cert - The certificate to search for.Copyright © 2015. All Rights Reserved.