/**********************************************************************
* $Source: /cvsroot/hibiscus/hibiscus/src/de/willuhn/jameica/hbci/server/AuslandsUeberweisungImpl.java,v $
* $Revision: 1.6 $
* $Date: 2011/03/01 10:52:18 $
* $Author: willuhn $
* $Locker: $
* $State: Exp $
*
* Copyright (c) by willuhn.webdesign
* All rights reserved
*
**********************************************************************/
package de.willuhn.jameica.hbci.server;
import java.rmi.RemoteException;
import java.util.Date;
import de.willuhn.jameica.hbci.HBCI;
import de.willuhn.jameica.hbci.HBCIProperties;
import de.willuhn.jameica.hbci.rmi.Address;
import de.willuhn.jameica.hbci.rmi.AuslandsUeberweisung;
import de.willuhn.jameica.hbci.rmi.Duplicatable;
import de.willuhn.jameica.hbci.rmi.Konto;
import de.willuhn.jameica.system.Application;
import de.willuhn.logging.Logger;
import de.willuhn.util.ApplicationException;
import de.willuhn.util.I18N;
/**
* Eine Auslands-Ueberweisung.
*/
public class AuslandsUeberweisungImpl extends AbstractBaseUeberweisungImpl implements AuslandsUeberweisung
{
private final static transient I18N i18n = Application.getPluginLoader().getPlugin(HBCI.class).getResources().getI18N();
/**
* @throws RemoteException
*/
public AuslandsUeberweisungImpl() throws RemoteException {
super();
}
/**
* @see de.willuhn.datasource.db.AbstractDBObject#getTableName()
*/
protected String getTableName() {
return "aueberweisung";
}
/**
* @see de.willuhn.jameica.hbci.rmi.Duplicatable#duplicate()
*/
public Duplicatable duplicate() throws RemoteException {
AuslandsUeberweisung u = (AuslandsUeberweisung) getService().createObject(AuslandsUeberweisung.class,null);
u.setBetrag(getBetrag());
u.setGegenkontoNummer(getGegenkontoNummer());
u.setGegenkontoName(getGegenkontoName());
u.setGegenkontoBLZ(getGegenkontoBLZ());
u.setKonto(getKonto());
u.setZweck(getZweck());
u.setEndtoEndId(getEndtoEndId());
u.setPmtInfId(getPmtInfId());
u.setTerminUeberweisung(isTerminUeberweisung());
u.setTermin(isTerminUeberweisung() ? getTermin() : new Date());
u.setUmbuchung(isUmbuchung());
return u;
}
/**
* @see de.willuhn.datasource.db.AbstractDBObject#insertCheck()
*/
protected void insertCheck() throws ApplicationException {
try {
Konto k = getKonto();
if (k == null)
throw new ApplicationException(i18n.tr("Bitte w�hlen Sie ein Konto aus."));
if (k.isNewObject())
throw new ApplicationException(i18n.tr("Bitte speichern Sie zun�chst das Konto"));
String kiban = k.getIban();
if (kiban == null || kiban.length() == 0)
throw new ApplicationException(i18n.tr("Das ausgew�hlte Konto besitzt keine IBAN"));
String bic = k.getBic();
if (bic == null || bic.length() == 0)
throw new ApplicationException(i18n.tr("Das ausgew�hlte Konto besitzt keine BIC"));
double betrag = getBetrag();
if (betrag == 0.0 || Double.isNaN(betrag))
throw new ApplicationException(i18n.tr("Bitte geben Sie einen g�ltigen Betrag ein."));
if (getGegenkontoNummer() == null || getGegenkontoNummer().length() == 0)
throw new ApplicationException(i18n.tr("Bitte geben Sie die IBAN des Gegenkontos ein"));
HBCIProperties.checkChars(getGegenkontoNummer(), HBCIProperties.HBCI_IBAN_VALIDCHARS);
HBCIProperties.checkLength(getGegenkontoNummer(), HBCIProperties.HBCI_IBAN_MAXLENGTH);
if (getGegenkontoBLZ() == null || getGegenkontoBLZ().length() == 0)
throw new ApplicationException(i18n.tr("Bitte geben Sie die BIC des Gegenkontos ein"));
HBCIProperties.checkBIC(getGegenkontoBLZ());
if (getGegenkontoName() == null || getGegenkontoName().length() == 0)
throw new ApplicationException(i18n.tr("Bitte geben Sie den Namen des Kontoinhabers des Gegenkontos ein"));
HBCIProperties.checkLength(getGegenkontoName(), HBCIProperties.HBCI_FOREIGNTRANSFER_USAGE_MAXLENGTH);
HBCIProperties.checkChars(getGegenkontoName(), HBCIProperties.HBCI_SEPA_VALIDCHARS);
HBCIProperties.getIBAN(getGegenkontoNummer());
HBCIProperties.checkLength(getZweck(), HBCIProperties.HBCI_FOREIGNTRANSFER_USAGE_MAXLENGTH);
HBCIProperties.checkChars(getZweck(), HBCIProperties.HBCI_SEPA_VALIDCHARS);
HBCIProperties.checkLength(getEndtoEndId(), HBCIProperties.HBCI_SEPA_ENDTOENDID_MAXLENGTH);
HBCIProperties.checkChars(getEndtoEndId(), HBCIProperties.HBCI_SEPA_VALIDCHARS);
HBCIProperties.checkLength(getPmtInfId(), HBCIProperties.HBCI_SEPA_ENDTOENDID_MAXLENGTH);
HBCIProperties.checkChars(getPmtInfId(), HBCIProperties.HBCI_SEPA_VALIDCHARS);
if (isUmbuchung() && isTerminUeberweisung())
throw new ApplicationException(i18n.tr("Eine Umbuchung kann nicht als Termin-Auftrag gesendet werden"));
if (this.getTermin() == null)
this.setTermin(new Date());
}
catch (RemoteException e)
{
Logger.error("error while checking foreign ueberweisung",e);
throw new ApplicationException(i18n.tr("Fehler beim Pr�fen der SEPA-�berweisung."));
}
}
/**
* @see de.willuhn.jameica.hbci.rmi.AuslandsUeberweisung#isTerminUeberweisung()
*/
public boolean isTerminUeberweisung() throws RemoteException
{
Integer i = (Integer) getAttribute("banktermin");
return i != null && i.intValue() == 1;
}
/**
* @see de.willuhn.jameica.hbci.rmi.AuslandsUeberweisung#setTerminUeberweisung(boolean)
*/
public void setTerminUeberweisung(boolean termin) throws RemoteException
{
setAttribute("banktermin",termin ? new Integer(1) : null);
}
/**
* @see de.willuhn.jameica.hbci.rmi.AuslandsUeberweisung#isUmbuchung()
*/
public boolean isUmbuchung() throws RemoteException
{
Integer i = (Integer) getAttribute("umbuchung");
return i != null && i.intValue() == 1;
}
/**
* @see de.willuhn.jameica.hbci.rmi.AuslandsUeberweisung#setUmbuchung(boolean)
*/
public void setUmbuchung(boolean b) throws RemoteException
{
setAttribute("umbuchung",b ? new Integer(1) : null);
}
/**
* @see de.willuhn.jameica.hbci.server.AbstractBaseUeberweisungImpl#ueberfaellig()
*/
public boolean ueberfaellig() throws RemoteException
{
// Termin-Auftraege werden sofort faellig gestellt, weil sie ja durch die Bank terminiert werden
if (isTerminUeberweisung())
return !ausgefuehrt();
return super.ueberfaellig();
}
/**
* @see de.willuhn.jameica.hbci.server.AbstractBaseUeberweisungImpl#setTextSchluessel(java.lang.String)
*/
public void setTextSchluessel(String schluessel) throws RemoteException
{
if (schluessel != null && schluessel.length() > 0)
throw new RemoteException("textschluessel not allowed for foreign transfer");
}
/**
* @see de.willuhn.jameica.hbci.server.AbstractHibiscusTransferImpl#setGegenkontoBLZ(java.lang.String)
*/
public void setGegenkontoBLZ(String blz) throws RemoteException
{
setAttribute("empfaenger_bic",blz);
}
/**
* @see de.willuhn.jameica.hbci.server.AbstractHibiscusTransferImpl#getGegenkontoBLZ()
*/
public String getGegenkontoBLZ() throws RemoteException
{
return (String) getAttribute("empfaenger_bic");
}
/**
* @see de.willuhn.jameica.hbci.server.AbstractHibiscusTransferImpl#setGegenkonto(de.willuhn.jameica.hbci.rmi.Address)
*/
public void setGegenkonto(Address e) throws RemoteException
{
if (e == null)
return;
// BUGZILLA 1437 - wir uebernehmen hier stattdessen BIC und IBAN
setGegenkontoBLZ(e.getBic());
setGegenkontoNummer(e.getIban());
setGegenkontoName(e.getName());
}
/**
* @see de.willuhn.jameica.hbci.server.AbstractHibiscusTransferImpl#setWeitereVerwendungszwecke(java.lang.String[])
*/
public void setWeitereVerwendungszwecke(String[] list) throws RemoteException
{
if (list != null && list.length > 0)
throw new RemoteException("extended usages not allowed for foreign transfer");
}
/**
* @see de.willuhn.jameica.hbci.server.AbstractHibiscusTransferImpl#setZweck2(java.lang.String)
*/
public void setZweck2(String zweck2) throws RemoteException
{
if (zweck2 != null && zweck2.length() > 0)
throw new RemoteException("second usage not allowed for foreign transfer");
}
/**
* @see de.willuhn.jameica.hbci.rmi.AuslandsUeberweisung#getEndtoEndId()
*/
public String getEndtoEndId() throws RemoteException
{
return (String) getAttribute("endtoendid");
}
/**
* @see de.willuhn.jameica.hbci.rmi.AuslandsUeberweisung#setEndtoEndId(java.lang.String)
*/
public void setEndtoEndId(String id) throws RemoteException
{
setAttribute("endtoendid",id);
}
/**
* @see de.willuhn.jameica.hbci.rmi.AuslandsUeberweisung#getPmtInfId()
*/
public String getPmtInfId() throws RemoteException
{
return (String) getAttribute("pmtinfid");
}
/**
* @see de.willuhn.jameica.hbci.rmi.AuslandsUeberweisung#setPmtInfId(java.lang.String)
*/
public void setPmtInfId(String id) throws RemoteException
{
setAttribute("pmtinfid",id);
}
}