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:
authorDavid Hook <dgh@cryptoworkshop.com>2014-06-03 08:21:39 +0400
committerDavid Hook <dgh@cryptoworkshop.com>2014-06-03 08:21:39 +0400
commitda54dd69710e71292804640ebf82654076301d69 (patch)
tree3d8b0f7068301e5cccd895e87c1c89ba59a2a397 /core/src/main/java/org/bouncycastle/asn1/InMemoryRepresentable.java
parent47e51ee9aacf697c5585c9fbe62a57e5e99b139c (diff)
JavaDoc
Diffstat (limited to 'core/src/main/java/org/bouncycastle/asn1/InMemoryRepresentable.java')
-rw-r--r--core/src/main/java/org/bouncycastle/asn1/InMemoryRepresentable.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/core/src/main/java/org/bouncycastle/asn1/InMemoryRepresentable.java b/core/src/main/java/org/bouncycastle/asn1/InMemoryRepresentable.java
index a4b1492c..9374ab76 100644
--- a/core/src/main/java/org/bouncycastle/asn1/InMemoryRepresentable.java
+++ b/core/src/main/java/org/bouncycastle/asn1/InMemoryRepresentable.java
@@ -2,8 +2,15 @@ package org.bouncycastle.asn1;
import java.io.IOException;
+/**
+ * Interface implemented by objects that can be converted from streaming to in-memory objects.
+ */
public interface InMemoryRepresentable
{
+ /**
+ * Get the in-memory representation of the ASN.1 object.
+ * @throws IOException for bad input data.
+ */
ASN1Primitive getLoadedObject()
throws IOException;
}