summaryrefslogtreecommitdiffstats
path: root/src/org/uic/barcode/ticket/api/asn/omv1/SequenceOfCarrierNum.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/uic/barcode/ticket/api/asn/omv1/SequenceOfCarrierNum.java')
-rw-r--r--src/org/uic/barcode/ticket/api/asn/omv1/SequenceOfCarrierNum.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/org/uic/barcode/ticket/api/asn/omv1/SequenceOfCarrierNum.java b/src/org/uic/barcode/ticket/api/asn/omv1/SequenceOfCarrierNum.java
deleted file mode 100644
index 9d75e83..0000000
--- a/src/org/uic/barcode/ticket/api/asn/omv1/SequenceOfCarrierNum.java
+++ /dev/null
@@ -1,28 +0,0 @@
-package org.uic.barcode.ticket.api.asn.omv1;
-
-import java.util.Collection;
-import java.util.List;
-
-import org.uic.barcode.asn1.datatypes.Asn1SequenceOf;
-import org.uic.barcode.asn1.datatypes.IntRange;
-
-@IntRange(minValue=1,maxValue=32000)
-public class SequenceOfCarrierNum extends Asn1SequenceOf<Long> {
- public SequenceOfCarrierNum() { super(); }
- public SequenceOfCarrierNum(Collection<Long> coll) { super(coll); }
-
-
- public SequenceOfCarrierNum(List<Long> numbers) {
- super();
- for (Long number: numbers){
- this.add(new Long(number));
- }
- }
- public static SequenceOfCarrierNum getSequence(List<Long> numList) {
- if (numList == null || numList.isEmpty()) return null;
- return new SequenceOfCarrierNum(numList);
- }
-
-
-
-} \ No newline at end of file