Skip to content

Commit

Permalink
Add IFEPE_LLBINARY
Browse files Browse the repository at this point in the history
(cherry picked from commit b022d4c)
  • Loading branch information
barspi committed Jul 20, 2023
1 parent 9474c35 commit 5d0e2a4
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions jpos/src/main/java/org/jpos/iso/IFEPE_LLBINARY.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/*
* jPOS Project [http://jpos.org]
* Copyright (C) 2000-2023 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 <http://www.gnu.org/licenses/>.
*/

package org.jpos.iso;

/**
* EBCDIC version of IFMC_LLBINARY, where Tag (TT) and Length (LL) are EBCDIC.
*/
public class IFEPE_LLBINARY extends ISOTagBinaryFieldPackager {

public IFEPE_LLBINARY() {
super(0,null, EbcdicPrefixer.LL, NullPadder.INSTANCE,
LiteralBinaryInterpreter.INSTANCE, EbcdicPrefixer.LL);
}

public IFEPE_LLBINARY(int len, String description) {
super(len, description, EbcdicPrefixer.LL, NullPadder.INSTANCE,
LiteralBinaryInterpreter.INSTANCE, EbcdicPrefixer.LL);
}
}

0 comments on commit 5d0e2a4

Please sign in to comment.