aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/jdk1.1/java/security/cert/CertPathParameters.java
blob: caff291a8c1100dbf17126a50a7588da6d45d98c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package java.security.cert;

/**
 * A specification of certification path algorithm parameters. The purpose
 * of this interface is to group (and provide type safety for) all CertPath
 * parameter specifications. All <code>CertPath</code> parameter specifications must
 * implement this interface. 
 **/
public interface CertPathParameters extends Cloneable
{
    /**
     * Makes a copy of this <code>CertPathParameters</code>. Changes to the
     * copy will not affect the original and vice versa.
     *
     * @return a copy of this <code>CertPathParameters</code>
     **/
    public Object clone();
}