001/* 002 * jPOS Project [http://jpos.org] 003 * Copyright (C) 2000-2026 jPOS Software SRL 004 * 005 * This program is free software: you can redistribute it and/or modify 006 * it under the terms of the GNU Affero General Public License as 007 * published by the Free Software Foundation, either version 3 of the 008 * License, or (at your option) any later version. 009 * 010 * This program is distributed in the hope that it will be useful, 011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 013 * GNU Affero General Public License for more details. 014 * 015 * You should have received a copy of the GNU Affero General Public License 016 * along with this program. If not, see <http://www.gnu.org/licenses/>. 017 */ 018 019package org.jpos.iso; 020 021/* 022 * vim:set ts=8 sw=4: 023 */ 024 025/** 026 * ISOFieldPackager EBCDIC variable len CHAR suitable for MasterCard subfield 112<br> 027 * <code> 028 * Format TTTLLL.... 029 * Where TTT is the 3 digit field number (Tag) 030 * LLL is the 3 digit field length 031 * ... is the field content 032 * </code> 033 * 034 * @author <a href="mailto:fernandoluizjr@gmail.com">Fernando Amaral</a> 035 * @author Fernando Amaral 036 * 037 * @version $Id: IFEPE_LLLCHAR.java 2706 2016-03-12 19:20:00Z apr $ 038 * @see ISOComponent 039 */ 040public class IFEPE_LLLCHAR extends ISOTagStringFieldPackager { 041 public IFEPE_LLLCHAR() { 042 super(0, null, EbcdicPrefixer.LLL, NullPadder.INSTANCE, 043 EbcdicInterpreter.INSTANCE, EbcdicPrefixer.LLL); 044 } 045 046 /** 047 * @param len 048 * - field len 049 * @param description 050 * symbolic descrption 051 */ 052 public IFEPE_LLLCHAR(int len, String description) { 053 super(len, description, EbcdicPrefixer.LLL, NullPadder.INSTANCE, 054 EbcdicInterpreter.INSTANCE, EbcdicPrefixer.LLL); 055 } 056 057}