rawincomingfilter.java

来自「java pos,你可以直接编译运行,」· Java 代码 · 共 32 行

JAVA
32
字号
/* * Copyright (c) 2004 jPOS.org  * * See terms of license at http://jpos.org/license.html * */package org.jpos.iso;import org.jpos.util.LogEvent;/** * Receives the header and binary image of an incoming message  * (suitable for MAC validation) * @author Alejandro Revilla * @version $Revision: 1.1 $ $Date: 2004/02/04 11:39:50 $ */public interface RawIncomingFilter extends ISOFilter {    /**     * @param channel current ISOChannel instance     * @param m ISOMsg to filter     * @param header optional header      * @param image raw image     * @param evt LogEvent     * @return an ISOMsg (possibly parameter m)     * @throws VetoException     */    public ISOMsg filter (ISOChannel channel, ISOMsg m,             byte[] header, byte[] image, LogEvent evt)         throws VetoException;}

⌨️ 快捷键说明

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