1 package com.lowagie.bc.asn1;2 3 /**4 * basic interface for DER string objects.5 */6 public interface DERString7 {8 public String getString();9 }10