Home | History | Annotate | Download | only in x509

Lines Matching refs:stores

28     private List stores;
65 stores = new ArrayList();
133 stores = new ArrayList(_params.stores);
207 * @throws ClassCastException if an element of <code>stores</code> is not
210 public void setCertStores(List stores)
212 if (stores != null)
214 Iterator it = stores.iterator();
223 * Sets the Bouncy Castle Stores for finding CRLs, certificates, attribute
228 * @param stores A list of stores to use.
230 * @throws ClassCastException if an element of <code>stores</code> is not
233 public void setStores(List stores)
235 if (stores == null)
237 this.stores = new ArrayList();
241 for (Iterator i = stores.iterator(); i.hasNext();)
250 this.stores = new ArrayList(stores);
258 * This method should be used to add local stores, like collection based
259 * X.509 stores, if available. Local stores should be considered first,
272 stores.add(store);
281 * X.509 stores, which are used to add (remote) locations, e.g. LDAP, found
334 return Collections.unmodifiableList(new ArrayList(stores));
367 * @return Returns <code>true</code> if additional stores are used.
378 * @param enabled <code>true</code> if additional stores are used.
504 * @throws ClassCastException if an element of <code>stores</code> is not