• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.bouncycastle.asn1;
2 
3 /**
4  * General interface implemented by ASN.1 STRING objects.
5  */
6 public interface ASN1String
7 {
8     /**
9      * Return a Java String representation of this STRING type's content.
10      * @return a Java String representation of this STRING.
11      */
getString()12     public String getString();
13 }
14