summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/uic/barcode/ticket/api/asn/omv2/SequenceOfCarrierIA5.java
blob: c06d78dc1a8fed4e129f753a83fe817698a1d4a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.uic.barcode.ticket.api.asn.omv2;

import java.util.Collection;

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

@RestrictedString(CharacterRestriction.IA5String)
public class SequenceOfCarrierIA5 extends Asn1SequenceOf<String> {
    public SequenceOfCarrierIA5() { super(); }
    public SequenceOfCarrierIA5(Collection<String> coll) { super(coll); }
}