Home | History | Annotate | Download | only in cert

Lines Matching defs:issuers

180      * setIssuers(Collection <X500Principal> issuers) method testing.
181 * Tests if CRLs with any issuers match the selector in the case of
182 * null issuerNames criteria, if specified issuers match the selector,
195 assertTrue("Any CRL issuers should match in the case of null issuers.",
198 ArrayList issuers = new ArrayList(2);
199 issuers.add(iss1);
200 issuers.add(iss2);
201 selector.setIssuers(issuers);
206 issuers.add(iss3);
213 * Tests if CRLs with any issuers match the selector in the case of
214 * null issuerNames criteria, if specified issuers match the selector,
236 assertTrue("Any CRL issuers should match in the case of null issuers.",
239 ArrayList issuers = new ArrayList(2);
240 issuers.add(iss1);
241 issuers.add(iss2);
243 selector.setIssuerNames(issuers);
252 issuers.add(iss3);
259 * Tests if CRLs with specified issuers match the selector,
281 * Tests if CRLs with specified issuers match the selector,
313 * Tests if CRLs with specified issuers match the selector,
424 * Tests if the method return null in the case of not specified issuers,
425 * if the returned collection corresponds to the specified issuers and
467 * Tests if the method return null in the case of not specified issuers,
468 * if the returned collection corresponds to the specified issuers.