![JAR search and dependency download from the Maven repository](/logo.png)
org.jpos.iso.validator.VErrorParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpos Show documentation
Show all versions of jpos Show documentation
jPOS is an ISO-8583 based financial transaction
library/framework that can be customized and
extended in order to implement financial interchanges.
/*
* jPOS Project [http://jpos.org]
* Copyright (C) 2000-2020 jPOS Software SRL
*
* 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 .
*/
package org.jpos.iso.validator;
import org.jpos.iso.*;
import org.jpos.util.LogSource;
import org.jpos.util.Loggeable;
import org.jpos.util.Logger;
import java.io.PrintStream;
import java.util.Iterator;
import java.util.Vector;
import java.util.Map;
/**
* Parse ISOComponents and put the errors into a list.
* Title: jPOS
* Description: Java Framework for Financial Systems
* Copyright: Copyright (c) 2000 jPOS.org. All rights reserved.
* Company: www.jPOS.org
* @author Jose Eduardo Leon
* @version 1.0
*/
@SuppressWarnings("unchecked")
public class VErrorParser implements LogSource, Loggeable {
/**
* Parse an ISOComponent and get an error vector.
* @param c Component to parse.
* @return error vector.
*/
public Vector getVErrors( ISOComponent c ) {
Vector v = new Vector();
_getErr( c, v, "" );
_errors = v;
return _errors;
}
public String parseXMLErrorList(){
/** @todo !!!!!!!! */
return "";
}
public void setLogger(Logger logger, String realm) {
this.logger = logger;
this.realm = realm;
}
public String getRealm() {
return realm;
}
public Logger getLogger() {
return logger;
}
/**
* Parse error list, and get an dump
* the xml string representing the list.
*
* Ex:
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* @param p output stream
* @param indent indent character
*/
public void dump(PrintStream p, String indent) {
/** @todo !!!!!!!!! */
}
/**
* Free errors memory.
*/
public void resetErrors(){
_errors = null;
}
/**
* Recursive method to get the errors.
*/
private void _getErr ( ISOComponent c, Vector list, String id ) {
if ( c instanceof ISOVField ){
Iterator iter = ((ISOVField)c).errorListIterator();
while (iter.hasNext()) {
ISOVError error = (ISOVError)iter.next();
error.setId( id );
list.add( error );
}
}
else if ( c instanceof ISOMsg ){
if ( c instanceof ISOVMsg ){
/** Msg level error **/
Iterator iter = ((ISOVMsg)c).errorListIterator();
while (iter.hasNext()) {
ISOVError error = (ISOVError)iter.next();
error.setId( id );
list.add( error );
}
}
/** recursively in childs **/
Map fields = c.getChildren();
int max = c.getMaxField();
for (int i = 0; i <= max ; i++)
if ((c=(ISOComponent) fields.get (i)) != null )
_getErr( c, list, id + Integer.toString(i) + " " );
}
}
protected Logger logger = null;
protected String realm=null;
private Vector _errors = null;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy