Home | History | Annotate | Download | only in cert

Lines Matching full:issuers

62      * specified issuers match the selector, and if not specified issuer does
84 * issuers match the selector, and if not specified issuer does not match
116 * any issuers match the selector in the case of null issuerNames criteria,
117 * if specified issuers match the selector, if not specified issuer does not
141 assertTrue("Any CRL issuers should match in the case of null issuers.",
144 ArrayList issuers = new ArrayList(2);
145 issuers.add(iss1);
146 issuers.add(iss2);
148 selector.setIssuerNames(issuers);
158 issuers.add(iss3);
164 * setIssuers(Collection <X500Principal> issuers) method testing. Tests if
165 * CRLs with any issuers match the selector in the case of null issuerNames
166 * criteria, if specified issuers match the selector, and if not specified
179 assertTrue("Any CRL issuers should match in the case of null issuers.",
182 ArrayList<X500Principal> issuers = new ArrayList<X500Principal>(2);
183 issuers.add(iss1);
184 issuers.add(iss2);
185 selector.setIssuers(issuers);
191 issuers.add(iss3);
198 * issuers match the selector, and if not specified issuer does not match
336 * of not specified issuers, if the returned collection corresponds to the
337 * specified issuers and this collection is unmodifiable.
359 * case of not specified issuers, if the returned collection corresponds to
360 * the specified issuers.