TOC PREV NEXT INDEX


Object Identifier Value Specification



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 };
 



Objective Systems, Inc.

102 Pickering Way, Suite #506
Exton, Pennsylvania 19341
http://www.obj-sys.com
Phone: (484) 875-9841
Toll-free: (877) 307-6855 (US only)
Fax: (484) 875-9830
info@obj-sys.com
TOC PREV NEXT INDEX