From 3d12246ff4c9395208fd3727599878d817e8d7ed Mon Sep 17 00:00:00 2001 From: Igor Skljar <39621064+it240884sii@users.noreply.github.com> Date: Fri, 5 Aug 2022 01:41:35 +0300 Subject: [PATCH] Create IFB_LLLLLLCHAR.java add 6 BCD digits length FieldPackager --- .../java/org/jpos/iso/IFB_LLLLLLCHAR.java | 46 +++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 jpos/src/main/java/org/jpos/iso/IFB_LLLLLLCHAR.java diff --git a/jpos/src/main/java/org/jpos/iso/IFB_LLLLLLCHAR.java b/jpos/src/main/java/org/jpos/iso/IFB_LLLLLLCHAR.java new file mode 100644 index 0000000000..153ebb9c81 --- /dev/null +++ b/jpos/src/main/java/org/jpos/iso/IFB_LLLLLLCHAR.java @@ -0,0 +1,46 @@ +/* + * jPOS Project [http://jpos.org] + * Copyright (C) 2000-2022 jPOS Software SRL + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +package org.jpos.iso; + +/** + * ISOFieldPackager Binary LLLCHAR + * + * @author apr@cs.com.uy + * @version $Id$ + * @see ISOComponent + */ +public class IFB_LLLLLLCHAR extends ISOStringFieldPackager { + public IFB_LLLLLLCHAR() { + super(NullPadder.INSTANCE, AsciiInterpreter.INSTANCE, BcdPrefixer.LLLLLL); + } + /** + * @param len - field len + * @param description symbolic descrption + */ + public IFB_LLLLLLCHAR(int len, String description) { + super(len, description, NullPadder.INSTANCE, AsciiInterpreter.INSTANCE, BcdPrefixer.LLLLLL); + checkLength(len, 999999); + } + + public void setLength(int len) + { + checkLength(len, 999999); + super.setLength(len); + } +}