Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'prov/src/main/jdk1.3/org/spongycastle/jce/cert/CertPathParameters.java')
-rw-r--r--prov/src/main/jdk1.3/org/spongycastle/jce/cert/CertPathParameters.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/prov/src/main/jdk1.3/org/spongycastle/jce/cert/CertPathParameters.java b/prov/src/main/jdk1.3/org/spongycastle/jce/cert/CertPathParameters.java
new file mode 100644
index 00000000..96978bd7
--- /dev/null
+++ b/prov/src/main/jdk1.3/org/spongycastle/jce/cert/CertPathParameters.java
@@ -0,0 +1,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();
+}