001    package org.apache.commons.ssl.asn1;
002    
003    /**
004     * Marker interface for CHOICE objects - if you implement this in a role your
005     * own object any attempt to tag the object implicitly will convert the tag to
006     * an explicit one as the encoding rules require.
007     * <p/>
008     * If you use this interface your class should also implement the getInstance
009     * pattern which takes a tag object and the tagging mode used.
010     */
011    public interface ASN1Choice {
012        // marker interface
013    }