An object identifier value specification causes a Java integer array to be generated containing the subidentifier values.
ASN.1 production:
<name> OBJECT IDENTIFIER ::= <oidvalue>
Generated Java constants:
public static final int[] <name> = { id1, id2, ..., idn };
For example, consider the following declaration:
oid OBJECT IDENTIFIER ::= { ccitt b(5) 10 }
This would result in the following Java constant being generated:
public static final int[] oid = { 0, 5, 10 };