org.kapott.hbci.GV.AbstractMultiGV Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbci4j-core Show documentation
Show all versions of hbci4j-core Show documentation
HBCI4j - Home Banking Computer Interface for Java
/**********************************************************************
*
* This file is part of HBCI4Java.
* Copyright (c) 2001-2008 Stefan Palme
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
**********************************************************************/
package org.kapott.hbci.GV;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Iterator;
import org.kapott.hbci.GV_Result.HBCIJobResultImpl;
import org.kapott.hbci.datatypes.SyntaxWrt;
import org.kapott.hbci.manager.HBCIHandler;
import org.kapott.hbci.manager.HBCIUtils;
import org.kapott.hbci.swift.DTAUS;
import org.kapott.hbci.swift.DTAUS.Transaction;
public abstract class AbstractMultiGV
extends HBCIJobImpl
{
public AbstractMultiGV(HBCIHandler handler, String jobnameLL, HBCIJobResultImpl jobResult)
{
super(handler, jobnameLL, jobResult);
}
public String getChallengeParam(String path)
{
String ret=null;
if (path.startsWith("sum")) {
String dtausdata=getLowlevelParams().getProperty(getName()+".data");
DTAUS dtaus=new DTAUS(dtausdata.substring(1));
if (path.equals("sumOthers")) {
// summe der ziel-kontonummern
long sum=0;
ArrayList entries=dtaus.getEntries();
for (Iterator i=entries.iterator();i.hasNext();) {
DTAUS.Transaction entry= i.next();
sum += Long.parseLong(entry.otherAccount.number);
}
ret=Long.toString(sum);
if (ret.length()>10) {
ret=ret.substring(0,10);
}
} else if (path.equals("sumValue")) {
// summe der beträge
long sum = 0;
ArrayList entries = dtaus.getEntries();
for (Iterator i = entries.iterator(); i.hasNext();) {
DTAUS.Transaction entry = i.next();
sum += entry.value.getLongValue();
}
// TODO: hier wird ziemlich unschön direkt auf
// die SyntaxDE-Funktionen zugegriffen
String v = HBCIUtils.bigDecimal2String(new BigDecimal(sum).divide(new BigDecimal("100.0")));
ret = new SyntaxWrt(v, 1, 0).toString();
} else if (path.equals("sumCurr")) {
// währung des sammlers
ret=dtaus.getCurr()==DTAUS.CURR_DM?"DEM":"EUR";
} else if (path.equals("sumCount")) {
// willuhn 2011-05-17 Anzahl der Buchungen, HHD 1.4
// Anzahl der Buchungen
ret = Integer.toString(dtaus.getEntries().size());
}
} else {
ret=super.getChallengeParam(path);
}
return ret;
}
}