1 package org.bouncycastle.asn1.misc; 2 3 import org.bouncycastle.asn1.*; 4 5 public class NetscapeRevocationURL 6 extends DERIA5String 7 { 8 public NetscapeRevocationURL( 9 DERIA5String str) 10 { 11 super(str.getString()); 12 } 13 14 public String toString() 15 { 16 return "NetscapeRevocationURL: " + this.getString(); 17 } 18 } 19