summaryrefslogtreecommitdiffstats
path: root/src/net/gcdc/asn1/datatypes/Asn1Default.java
blob: 03bb8d0af3c1c693e1824de8254f8d00ede9ac43 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package net.gcdc.asn1.datatypes;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Target({ElementType.TYPE, ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
public @interface Asn1Default {
    String value();   
}