blob: 5ca8218e0e783b9557edf336cd73e486b5ac6f93 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 2000-2001 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Sun designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Sun in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22 * CA 95054 USA or visit www.sun.com if you need additional information or
23 * have any questions.
24 */
25
26package java.security.cert;
27
28import java.security.InvalidAlgorithmParameterException;
29
30/**
31 *
32 * The <i>Service Provider Interface</i> (<b>SPI</b>)
33 * for the {@link CertPathValidator CertPathValidator} class. All
34 * <code>CertPathValidator</code> implementations must include a class (the
35 * SPI class) that extends this class (<code>CertPathValidatorSpi</code>)
36 * and implements all of its methods. In general, instances of this class
37 * should only be accessed through the <code>CertPathValidator</code> class.
38 * For details, see the Java Cryptography Architecture.
39 * <p>
40 * <b>Concurrent Access</b>
41 * <p>
42 * Instances of this class need not be protected against concurrent
43 * access from multiple threads. Threads that need to access a single
44 * <code>CertPathValidatorSpi</code> instance concurrently should synchronize
45 * amongst themselves and provide the necessary locking before calling the
46 * wrapping <code>CertPathValidator</code> object.
47 * <p>
48 * However, implementations of <code>CertPathValidatorSpi</code> may still
49 * encounter concurrency issues, since multiple threads each
50 * manipulating a different <code>CertPathValidatorSpi</code> instance need not
51 * synchronize.
52 *
53 * @since 1.4
54 * @author Yassir Elley
55 */
56public abstract class CertPathValidatorSpi {
57
58 /**
59 * The default constructor.
60 */
61 public CertPathValidatorSpi() {}
62
63 /**
64 * Validates the specified certification path using the specified
65 * algorithm parameter set.
66 * <p>
67 * The <code>CertPath</code> specified must be of a type that is
68 * supported by the validation algorithm, otherwise an
69 * <code>InvalidAlgorithmParameterException</code> will be thrown. For
70 * example, a <code>CertPathValidator</code> that implements the PKIX
71 * algorithm validates <code>CertPath</code> objects of type X.509.
72 *
73 * @param certPath the <code>CertPath</code> to be validated
74 * @param params the algorithm parameters
75 * @return the result of the validation algorithm
76 * @exception CertPathValidatorException if the <code>CertPath</code>
77 * does not validate
78 * @exception InvalidAlgorithmParameterException if the specified
79 * parameters or the type of the specified <code>CertPath</code> are
80 * inappropriate for this <code>CertPathValidator</code>
81 */
82 public abstract CertPathValidatorResult
83 engineValidate(CertPath certPath, CertPathParameters params)
84 throws CertPathValidatorException, InvalidAlgorithmParameterException;
85}