All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jpos.iso.validator.MSGTEST02 Maven / Gradle / Ivy

/*
 * jPOS Project [http://jpos.org]
 * Copyright (C) 2000-2023 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.LogEvent;
import org.jpos.util.Logger;

/**
 * VALIDATES FIELD INTERDEPENDENCY. IF FIELD 0 ENDS WITH 1 THEN
 * FIELD 1 MUST END WITH 0.
 * ONLY TEST PURPOSE.
 * 

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 */ public class MSGTEST02 extends ISOBaseValidator { public MSGTEST02() { super(); } public MSGTEST02( boolean breakOnError ) { super(breakOnError); } private String makeStrFromArray( int[] validFields ){ if ( validFields == null ) return null; StringBuilder result = new StringBuilder(); for (int validField : validFields) { result.append(validField); result.append(", "); } result.delete( result.length()-2, result.length()-1 ); return result.toString( ); } public ISOComponent validate(ISOComponent m) throws org.jpos.iso.ISOException { LogEvent evt = new LogEvent( this, "validate" ); try { super.validate ( m ); ISOMsg msg = (ISOMsg)m; int[] validFields = { 0,1 }; if ( !msg.hasFields( validFields ) ){ ISOVError e = new ISOVError( "Fields " + makeStrFromArray( validFields ) + " must appear in msg.", "002" ); if ( msg instanceof ISOVMsg ) ((ISOVMsg)msg).addISOVError( e ); else msg = new ISOVMsg( msg, e ); if ( breakOnError ) throw new ISOVException ( "Error on msg. " , msg ); } /** field interdependency **/ if ( msg.getString( 0 ).endsWith( "1" ) && !msg.getString( 1 ).endsWith( "0" ) ){ ISOVError e = new ISOVError( "If field 0 ends with 1 then field 1 must end with 0.", "003" ); if ( msg instanceof ISOVMsg ) ((ISOVMsg)msg).addISOVError( e ); else msg = new ISOVMsg( msg, e ); if ( breakOnError ) throw new ISOVException ( "Error on msg. " , msg ); } return msg; } finally { Logger.log( evt ); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy