aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/prov/src/main/jdk1.3/org/spongycastle/jce/cert/CertPathParameters.java
blob: 96978bd7572f70f8980f910c400305b616c3fbd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.spongycastle.jce.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();
}