⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 baseheader.java

📁 POS is a Java&#174 platform-based, mission-critical, ISO-8583 based financial transaction library/fr
💻 JAVA
字号:
/* * jPOS Project [http://jpos.org] * Copyright (C) 2000-2008 Alejandro P. Revilla * * 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.header;import java.io.PrintStream;import org.jpos.iso.ISOHeader;import org.jpos.iso.ISOUtil;import org.jpos.util.Loggeable;/** * @author <a href="mailto:Eoin.Flood@orbiscom.com">Eoin Flood</a> * @author <a href="mailto:apr@cs.com.uy">Alejandro P. Revilla</a> */public class BaseHeader implements ISOHeader, Loggeable {    /**     *      */    private static final long serialVersionUID = 8674535007934468935L;    protected byte[] header;    /**     * Default Constructor.     * Used by Class.forName.newInstance(...);     */    public BaseHeader()    {        header = null;    }    /**     * Create a new Header from a byte array.     */    public BaseHeader (byte[] header) {        unpack(header);    }    /**      * Clone this Header.     */    public Object clone()     {        try {            BaseHeader h = (BaseHeader) super.clone();            if (this.header != null)                h.header = (byte[]) this.header.clone();            return h;        } catch (CloneNotSupportedException e) {            throw new InternalError();        }    }    public byte[] pack() {        return header;    }    public int unpack (byte[] header) {        this.header = header;        return header != null ? header.length : 0;    }    public int getLength () {        return header != null ? header.length : 0;    }    public void setDestination(String dst) {}    public void setSource(String src) {}    public String getDestination() { return null; }    public String getSource() { return null; }    public void swapDirection() {}    public void dump (PrintStream p, String indent) {        if (header != null) {            p.println (                indent               + "<header>" + ISOUtil.hexString (header) + "</header>"            );        }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -