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

import java.util.Collection;

import net.gcdc.asn1.datatypes.Asn1SequenceOf;
import net.gcdc.asn1.datatypes.CharacterRestriction;
import net.gcdc.asn1.datatypes.RestrictedString;

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