Methods Summary |
---|
public void | add(com.sun.org.apache.xml.internal.security.keys.storage.StorageResolverSpi resolver)Method addResolver
this._storageResolvers.add(resolver);
this._iterator = null;
|
public void | add(java.security.KeyStore keyStore)Method addKeyStore
try {
this.add(new KeyStoreResolver(keyStore));
} catch (StorageResolverException ex) {
log.log(java.util.logging.Level.SEVERE, "Could not add KeyStore because of: ", ex);
}
|
public void | add(java.security.cert.X509Certificate x509certificate)Method addCertificate
this.add(new SingleCertificateResolver(x509certificate));
|
public java.util.Iterator | getIterator()Method getIterator
if (this._iterator == null) {
this._iterator = new StorageResolverIterator(this._storageResolvers.iterator());
}
return this._iterator;
|
public boolean | hasNext()Method hasNext
if (this._iterator == null) {
this._iterator = new StorageResolverIterator(this._storageResolvers.iterator());
}
return this._iterator.hasNext();
|
public java.security.cert.X509Certificate | next()Method next
return (X509Certificate) this._iterator.next();
|