From 9ac22eb70e6b6ce9e09e2bfe64c9d42da8e0c07e Mon Sep 17 00:00:00 2001 From: CGantert345 <57003061+CGantert345@users.noreply.github.com> Date: Thu, 2 Dec 2021 14:55:33 +0100 Subject: Unit Test for all barcode elements - fixes on - openTicket -> Servicelevel - includedOpenTicket -> ServiceLevel - Voucher - CustomerCard -> CustomerStatusDescription - Zone - Line - ValidityPeriodDetail - CardReference --- .../org/uic/barcode/ticket/api/asn/omv3/LineType.java | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'src/main/java/org/uic/barcode/ticket/api/asn/omv3/LineType.java') diff --git a/src/main/java/org/uic/barcode/ticket/api/asn/omv3/LineType.java b/src/main/java/org/uic/barcode/ticket/api/asn/omv3/LineType.java index 80b6478..8cbf7a5 100644 --- a/src/main/java/org/uic/barcode/ticket/api/asn/omv3/LineType.java +++ b/src/main/java/org/uic/barcode/ticket/api/asn/omv3/LineType.java @@ -28,7 +28,6 @@ import org.uic.barcode.asn1.datatypes.HasExtensionMarker; import org.uic.barcode.asn1.datatypes.IntRange; import org.uic.barcode.asn1.datatypes.RestrictedString; import org.uic.barcode.asn1.datatypes.Sequence; -import org.uic.barcode.asn1.datatypesimpl.OctetString; import org.uic.barcode.asn1.datatypesimpl.SequenceOfUnrestrictedLong; @Sequence @@ -72,10 +71,6 @@ public class LineType extends Object { @FieldOrder(order = 8) @Asn1Optional public Asn1BigInteger city; - @FieldOrder(order = 9) - @Asn1Optional public OctetString binaryZoneId; - - public Long getCarrierNum() { @@ -126,11 +121,6 @@ public class LineType extends Object { return Asn1BigInteger.toLong(this.city); } - public byte[] getBinaryZoneId() { - - return binaryZoneId.toByteArray(); - } - public void setCarrierNum(Long carrierNum) { this.carrierNum = carrierNum; @@ -176,10 +166,5 @@ public class LineType extends Object { this.city = Asn1BigInteger.toAsn1(city); } - public void setBinaryZoneId(byte[] binaryZoneId) { - - this.binaryZoneId = new OctetString(binaryZoneId); - } - } -- cgit v1.2.3