2002/03/21 01:19:32
[org.ibex.core.git] / src / org / bouncycastle / asn1 / x509 / GeneralNames.java
1 package org.bouncycastle.asn1.x509;
2
3 import org.bouncycastle.asn1.*;
4
5 public class GeneralNames
6     implements DEREncodable
7 {
8     DERConstructedSequence  seq;
9
10     public GeneralNames(
11         DERConstructedSequence  seq)
12     {
13         this.seq = seq;
14     }
15
16     /**
17      * <pre>
18      * GeneralNames ::= SEQUENCE SIZE {1..MAX} OF GeneralName
19      * </pre>
20      */
21     public DERObject getDERObject()
22     {
23         return seq;
24     }
25 }