Uses of Class
com.solab.iso8583.MessageFactory

Packages that use MessageFactory
com.solab.iso8583.parse This package contains the classes used for parsing the XML configuration files to set up a MessageFactory, and also for storing the parse information for each field depending on the type of message. 
 

Uses of MessageFactory in com.solab.iso8583.parse
 

Methods in com.solab.iso8583.parse that return MessageFactory
static MessageFactory ConfigParser.createDefault()
          Creates a message factory configured from the default file, which is j8583.xml located in the root of the classpath.
static MessageFactory ConfigParser.createFromClasspathConfig(String path)
          Creates a message factory from the specified path inside the classpath.
static MessageFactory ConfigParser.createFromUrl(URL url)
          Creates a message factory from the file located at the specified URL.
 

Methods in com.solab.iso8583.parse with parameters of type MessageFactory
static void ConfigParser.configureFromClasspathConfig(MessageFactory mfact, String path)
          Configures a MessageFactory using the configuration file at the path specified (will be searched within the classpath using the MessageFactory's ClassLoader).
static void ConfigParser.configureFromDefault(MessageFactory mfact)
          Configures a MessageFactory using the default configuration file j8583.xml.
protected static void ConfigParser.parse(MessageFactory mfact, InputStream stream)
          Reads the XML from the stream and configures the message factory with its values.