Home | History | Annotate | Download | only in asn1
      1 package org.bouncycastle.asn1;
      2 
      3 /**
      4  * Marker interface for CHOICE objects - if you implement this in a role your
      5  * own object any attempt to tag the object implicitly will convert the tag to
      6  * an explicit one as the encoding rules require.
      7  * <p>
      8  * If you use this interface your class should also implement the getInstance
      9  * pattern which takes a tag object and the tagging mode used.
     10  */
     11 public interface ASN1Choice
     12 {
     13     // marker interface
     14 }
     15