Uses of Class
org.jpos.iso.ISOMsg

Packages that use ISOMsg
org.jpos.bsh   
org.jpos.core classes such as CardHolder, CardTransaction, CardAgent, etc. 
org.jpos.iso ISO-8583/ANSI X9.2 related classes 
org.jpos.iso.channel ISOChannel implementations 
org.jpos.iso.filter ISOFilter implementations 
org.jpos.iso.gui GUI component 
org.jpos.iso.packager Packager implementations 
org.jpos.q2.iso   
 

Uses of ISOMsg in org.jpos.bsh
 

Methods in org.jpos.bsh that return ISOMsg
 ISOMsg BSHFilter.filter(ISOChannel channel, ISOMsg m, byte[] header, byte[] image, LogEvent evt)
           
 ISOMsg BSHFilter.filter(ISOChannel channel, ISOMsg m, LogEvent evt)
           
 

Methods in org.jpos.bsh with parameters of type ISOMsg
 ISOMsg BSHFilter.filter(ISOChannel channel, ISOMsg m, byte[] header, byte[] image, LogEvent evt)
           
 ISOMsg BSHFilter.filter(ISOChannel channel, ISOMsg m, LogEvent evt)
           
 boolean BSHRequestListener.process(ISOSource source, ISOMsg m)
           
 

Uses of ISOMsg in org.jpos.core
 

Constructors in org.jpos.core with parameters of type ISOMsg
CardHolder(ISOMsg m)
          Construct a CardHolder based on content received on field 35 (track2) or field 2 (PAN) + field 14 (EXP)
 

Uses of ISOMsg in org.jpos.iso
 

Subclasses of ISOMsg in org.jpos.iso
 class FSDISOMsg
           
 class ISOVMsg
          Wrapper class resulting from process of validating an ISOMsg instance.
 

Methods in org.jpos.iso that return ISOMsg
protected  ISOMsg BaseChannel.applyIncomingFilters(ISOMsg m, byte[] header, byte[] image, LogEvent evt)
           
protected  ISOMsg BaseChannel.applyIncomingFilters(ISOMsg m, LogEvent evt)
           
protected  ISOMsg FilteredBase.applyIncomingFilters(ISOMsg m, LogEvent evt)
           
protected  ISOMsg BaseChannel.applyOutgoingFilters(ISOMsg m, LogEvent evt)
           
protected  ISOMsg FilteredBase.applyOutgoingFilters(ISOMsg m, LogEvent evt)
           
 ISOMsg ISOPackager.createISOMsg()
           
protected  ISOMsg BaseChannel.createISOMsg()
           
 ISOMsg ISOBasePackager.createISOMsg()
           
protected  ISOMsg BaseChannel.createMsg()
          support old factory method name for backward compatibility
 ISOMsg RawIncomingFilter.filter(ISOChannel channel, ISOMsg m, byte[] header, byte[] image, LogEvent evt)
           
 ISOMsg ISOFilter.filter(ISOChannel channel, ISOMsg m, LogEvent evt)
           
 ISOMsg Channel.receive()
           
 ISOMsg BaseChannel.receive()
          Waits and receive an ISOMsg over the TCP/IP session
 ISOMsg ISOChannel.receive()
          Receives an ISOMsg
 ISOMsg Channel.receive(long timeout)
           
 ISOMsg MUX.request(ISOMsg m, long timeout)
           
 

Methods in org.jpos.iso with parameters of type ISOMsg
protected  ISOMsg BaseChannel.applyIncomingFilters(ISOMsg m, byte[] header, byte[] image, LogEvent evt)
           
protected  ISOMsg BaseChannel.applyIncomingFilters(ISOMsg m, LogEvent evt)
           
protected  ISOMsg FilteredBase.applyIncomingFilters(ISOMsg m, LogEvent evt)
           
protected  ISOMsg BaseChannel.applyOutgoingFilters(ISOMsg m, LogEvent evt)
           
protected  ISOMsg FilteredBase.applyOutgoingFilters(ISOMsg m, LogEvent evt)
           
 ISOMsg RawIncomingFilter.filter(ISOChannel channel, ISOMsg m, byte[] header, byte[] image, LogEvent evt)
           
 ISOMsg ISOFilter.filter(ISOChannel channel, ISOMsg m, LogEvent evt)
           
protected  ISOPackager BaseChannel.getDynamicPackager(ISOMsg m)
          allow subclasses to override default packager on outgoing messages
protected  int BaseChannel.getHeaderLength(ISOMsg m)
           
 void FSDISOMsg.merge(ISOMsg m)
           
 void ISOMsg.merge(ISOMsg m)
          add all fields present on received parameter to this ISOMsg
please note that received fields take precedence over existing ones (simplifying card agent message creation and template handling)
 boolean ISORequestListener.process(ISOSource source, ISOMsg m)
           
 boolean Connector.process(ISOSource source, ISOMsg m)
           
 ISOMsg MUX.request(ISOMsg m, long timeout)
           
 void MUX.request(ISOMsg m, long timeout, ISOResponseListener r, Object handBack)
           
 void ISOResponseListener.responseReceived(ISOMsg resp, Object handBack)
           
 void Channel.send(ISOMsg m)
           
 void BaseChannel.send(ISOMsg m)
          sends an ISOMsg over the TCP/IP session
 void ISOSource.send(ISOMsg m)
          sends (or hands back) an ISOMsg
 void ISOChannel.send(ISOMsg m)
          sends an ISOMsg over the TCP/IP session
protected  void BaseChannel.sendMessageHeader(ISOMsg m, int len)
           
protected  void BaseChannel.sendMessageTrailler(ISOMsg m, byte[] b)
           
protected  void BaseChannel.sendMessageTrailler(ISOMsg m, int len)
          Deprecated. use sendMessageTrailler(ISOMsg m, byte[] b) instead.
protected  void BaseChannel.unpack(ISOMsg m, byte[] b)
           
 

Constructors in org.jpos.iso with parameters of type ISOMsg
ISOVMsg(ISOMsg Source)
          Create a message from original instance adding error data.
ISOVMsg(ISOMsg Source, ISOVError FirstError)
           
 

Uses of ISOMsg in org.jpos.iso.channel
 

Methods in org.jpos.iso.channel that return ISOMsg
 ISOMsg FSDChannel.createMsg()
           
 ISOMsg LoopbackChannel.receive()
           
 ISOMsg ChannelPool.receive()
           
 ISOMsg PADChannel.receive()
           
 

Methods in org.jpos.iso.channel with parameters of type ISOMsg
 void VAPChannel.send(ISOMsg m)
          sends an ISOMsg over the TCP/IP session.
 void LoopbackChannel.send(ISOMsg m)
           
 void ChannelPool.send(ISOMsg m)
           
protected  void VAPChannel.sendMessageHeader(ISOMsg m, int len)
           
protected  void X25Channel.sendMessageHeader(ISOMsg m, int len)
           
protected  void BCDChannel.sendMessageHeader(ISOMsg m, int len)
           
protected  void TelnetXMLChannel.sendMessageHeader(ISOMsg m, int len)
           
protected  void CSChannel.sendMessageHeader(ISOMsg m, int len)
           
protected  void NACChannel.sendMessageHeader(ISOMsg m, int len)
           
protected  void NCCChannel.sendMessageHeader(ISOMsg m, int len)
           
protected  void XMLChannel.sendMessageHeader(ISOMsg m, int len)
           
protected  void BASE24TCPChannel.sendMessageTrailler(ISOMsg m, int len)
           
protected  void BASE24Channel.sendMessageTrailler(ISOMsg m, int len)
           
 

Uses of ISOMsg in org.jpos.iso.filter
 

Methods in org.jpos.iso.filter that return ISOMsg
 ISOMsg DebugFilter.filter(ISOChannel channel, ISOMsg m, byte[] header, byte[] image, LogEvent evt)
           
 ISOMsg MacroFilter.filter(ISOChannel channel, ISOMsg m, LogEvent evt)
           
 ISOMsg DebugFilter.filter(ISOChannel channel, ISOMsg m, LogEvent evt)
           
 ISOMsg ThroughputControlFilter.filter(ISOChannel channel, ISOMsg m, LogEvent evt)
           
 ISOMsg XSLTFilter.filter(ISOChannel channel, ISOMsg m, LogEvent evt)
           
 ISOMsg ChannelInfoFilter.filter(ISOChannel channel, ISOMsg m, LogEvent evt)
           
 ISOMsg MD5Filter.filter(ISOChannel channel, ISOMsg m, LogEvent evt)
           
 ISOMsg StatefulFilter.filter(ISOChannel iSOChannel, ISOMsg m, LogEvent evt)
           
 ISOMsg DelayFilter.filter(ISOChannel channel, ISOMsg m, LogEvent evt)
           
 

Methods in org.jpos.iso.filter with parameters of type ISOMsg
 ISOMsg DebugFilter.filter(ISOChannel channel, ISOMsg m, byte[] header, byte[] image, LogEvent evt)
           
 ISOMsg MacroFilter.filter(ISOChannel channel, ISOMsg m, LogEvent evt)
           
 ISOMsg DebugFilter.filter(ISOChannel channel, ISOMsg m, LogEvent evt)
           
 ISOMsg ThroughputControlFilter.filter(ISOChannel channel, ISOMsg m, LogEvent evt)
           
 ISOMsg XSLTFilter.filter(ISOChannel channel, ISOMsg m, LogEvent evt)
           
 ISOMsg ChannelInfoFilter.filter(ISOChannel channel, ISOMsg m, LogEvent evt)
           
 ISOMsg MD5Filter.filter(ISOChannel channel, ISOMsg m, LogEvent evt)
           
 ISOMsg StatefulFilter.filter(ISOChannel iSOChannel, ISOMsg m, LogEvent evt)
           
 ISOMsg DelayFilter.filter(ISOChannel channel, ISOMsg m, LogEvent evt)
           
 int[] MD5Filter.getFields(ISOMsg m)
          factory method
 

Uses of ISOMsg in org.jpos.iso.gui
 

Constructors in org.jpos.iso.gui with parameters of type ISOMsg
ISOMsgPanel(ISOMsg m)
           
ISOMsgPanel(ISOMsg m, boolean withDump)
           
 

Uses of ISOMsg in org.jpos.iso.packager
 

Methods in org.jpos.iso.packager that return ISOMsg
 ISOMsg FSDPackager.createISOMsg()
           
 ISOMsg XML2003Packager.createISOMsg()
           
 ISOMsg VISA1Packager.createISOMsg()
           
 ISOMsg XMLPackager.createISOMsg()
           
 ISOMsg DummyPackager.createISOMsg()
           
 ISOMsg LogPackager.createISOMsg()
           
 

Methods in org.jpos.iso.packager with parameters of type ISOMsg
protected  int VISA1Packager.handleSpecialField35(ISOMsg m, List l)
           
 

Uses of ISOMsg in org.jpos.q2.iso
 

Methods in org.jpos.q2.iso that return ISOMsg
 ISOMsg OneShotChannelAdaptor.receive()
          Receive message
 ISOMsg ChannelAdaptor.receive()
          Receive message
 ISOMsg OneShotChannelAdaptor.receive(long timeout)
          Receive message
 ISOMsg ChannelAdaptor.receive(long timeout)
          Receive message
 ISOMsg MUXPool.request(ISOMsg m, long timeout)
           
 ISOMsg RemoteQMUX.request(ISOMsg m, long timeout)
           
 ISOMsg QMUXProxy.request(ISOMsg m, long timeout)
           
 ISOMsg QMUX.request(ISOMsg m, long timeout)
           
 

Methods in org.jpos.q2.iso with parameters of type ISOMsg
 String QMUX.getKey(ISOMsg m)
           
 boolean QServer.process(ISOSource source, ISOMsg m)
           
protected  void QMUX.processUnhandled(ISOMsg m)
           
 ISOMsg MUXPool.request(ISOMsg m, long timeout)
           
 ISOMsg RemoteQMUX.request(ISOMsg m, long timeout)
           
 ISOMsg QMUXProxy.request(ISOMsg m, long timeout)
           
 ISOMsg QMUX.request(ISOMsg m, long timeout)
           
 void MUXPool.request(ISOMsg m, long timeout, ISOResponseListener r, Object handBack)
           
 void RemoteQMUX.request(ISOMsg m, long timeout, ISOResponseListener r, Object handBack)
           
 void QMUXProxy.request(ISOMsg m, long timeout, ISOResponseListener rl, Object handBack)
           
 void QMUX.request(ISOMsg m, long timeout, ISOResponseListener rl, Object handBack)
           
 void QMUX.AsyncRequest.responseReceived(ISOMsg response)
           
 void OneShotChannelAdaptor.send(ISOMsg m)
          Queue a message to be transmitted by this adaptor
 void ChannelAdaptor.send(ISOMsg m)
          Queue a message to be transmitted by this adaptor
 void QMUX.send(ISOMsg m)
          sends (or hands back) an ISOMsg
 void OneShotChannelAdaptor.send(ISOMsg m, long timeout)
          Queue a message to be transmitted by this adaptor
 void ChannelAdaptor.send(ISOMsg m, long timeout)
          Queue a message to be transmitted by this adaptor
 



Copyright © 1998-2012 jPOS.org. All Rights Reserved.