Home | History | Annotate | Download | only in asn1
      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      */
     12     public String getString();
     13 }
     14