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/CertPathValidatorResult.java')
-rw-r--r--prov/src/main/jdk1.3/org/spongycastle/jce/cert/CertPathValidatorResult.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/prov/src/main/jdk1.3/org/spongycastle/jce/cert/CertPathValidatorResult.java b/prov/src/main/jdk1.3/org/spongycastle/jce/cert/CertPathValidatorResult.java
new file mode 100644
index 00000000..e31b23f2
--- /dev/null
+++ b/prov/src/main/jdk1.3/org/spongycastle/jce/cert/CertPathValidatorResult.java
@@ -0,0 +1,22 @@
+package org.spongycastle.jce.cert;
+
+/**
+ * A specification of the result of a certification path validator algorithm.<br />
+ * <br />
+ * The purpose of this interface is to group (and provide type safety
+ * for) all certification path validator results. All results returned
+ * by the {@link CertPathValidator#validate CertPathValidator.validate}
+ * method must implement this interface.
+ *
+ * @see CertPathValidator
+ **/
+public interface CertPathValidatorResult extends Cloneable
+{
+ /**
+ * Makes a copy of this <code>CertPathValidatorResult</code>. Changes to the
+ * copy will not affect the original and vice versa.
+ *
+ * @return a copy of this <code>CertPathValidatorResult</code>
+ */
+ public Object clone();
+}