Package netscape.security.x509
Class NoticeReference
- java.lang.Object
-
- netscape.security.x509.NoticeReference
-
- All Implemented Interfaces:
java.io.Serializable
public class NoticeReference extends java.lang.Object implements java.io.Serializable
Represent the NoticeReference. NoticeReference ::= SEQUENCE { organization DisplayText, noticeNumbers SEQUENCE OF INTEGER }- Author:
- Thomas Kwan
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NoticeReference(DerValue val)
NoticeReference(DisplayText org, int[] numbers)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
encode(DerOutputStream out)
Write the NoticeReference to the DerOutputStream.int[]
getNumbers()
DisplayText
getOrganization()
-
-
-
Constructor Detail
-
NoticeReference
public NoticeReference(DisplayText org, int[] numbers)
-
NoticeReference
public NoticeReference(DerValue val) throws java.io.IOException
- Throws:
java.io.IOException
-
-
Method Detail
-
getOrganization
public DisplayText getOrganization()
-
getNumbers
public int[] getNumbers()
-
encode
public void encode(DerOutputStream out) throws java.io.IOException
Write the NoticeReference to the DerOutputStream.- Parameters:
out
- the DerOutputStream to write the object to.- Throws:
java.io.IOException
- on errors.
-
-