summaryrefslogblamecommitdiffstats
path: root/src/main/java/org/uic/barcode/ticket/api/asn/omv3/SequenceOfCustomerStatusType.java
blob: 6447c94f7f043a44455ecebb624d84f88e97fae8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                                              
package org.uic.barcode.ticket.api.asn.omv3;

import java.util.Collection;

import org.uic.barcode.asn1.datatypes.Asn1SequenceOf;

public class SequenceOfCustomerStatusType extends Asn1SequenceOf<CustomerStatusType> {
    public SequenceOfCustomerStatusType() { super(); }
    public SequenceOfCustomerStatusType(Collection<CustomerStatusType> coll) { super(coll); }
}