org.kapott.hbci.GV.GVTermUebSEPADel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbci4j-adorsys Show documentation
Show all versions of hbci4j-adorsys Show documentation
HBCI4j - Home Banking Computer Interface for Java - Clone from https://github.com/hbci4j/hbci4java
package org.kapott.hbci.GV;
import org.kapott.hbci.GV_Result.HBCIJobResultImpl;
import org.kapott.hbci.passport.HBCIPassportInternal;
import org.kapott.hbci.sepa.SepaVersion;
/**
* Implementierung des HBCI-Jobs fuer die Löschung einer SEPA-Terminüberweisung.
*/
public class GVTermUebSEPADel extends AbstractSEPAGV {
private final static SepaVersion DEFAULT = SepaVersion.PAIN_001_001_02;
public GVTermUebSEPADel(HBCIPassportInternal passport) {
this(passport, getLowlevelName(), null);
}
public GVTermUebSEPADel(HBCIPassportInternal passport, String name, String pain) {
super(passport, name, new HBCIJobResultImpl(passport));
addConstraint("src.bic", "My.bic", null);
addConstraint("src.iban", "My.iban", null);
if (this.canNationalAcc(passport)) // nationale Bankverbindung mitschicken, wenn erlaubt
{
addConstraint("src.country", "My.KIK.country", "");
addConstraint("src.blz", "My.KIK.blz", "");
addConstraint("src.number", "My.number", "");
addConstraint("src.subnumber", "My.subnumber", "");
}
addConstraint("orderid", "orderid", null);
addConstraint("_sepadescriptor", "sepadescr", this.getPainVersion().getURN());
if (pain == null) {
addConstraint("_sepapain", "sepapain", null);
} else {
setPainXml(pain);
}
/* dummy constraints to allow an application to set these values. the
* overriden setLowlevelParam() stores these values in a special structure
* which is later used to create the SEPA pain document. */
addConstraint("src.bic", "sepa.src.bic", null);
addConstraint("src.iban", "sepa.src.iban", null);
addConstraint("src.name", "sepa.src.name", null);
addConstraint("dst.bic", "sepa.dst.bic", "", true); // Kann eventuell entfallen, da BIC optional
addConstraint("dst.iban", "sepa.dst.iban", null);
addConstraint("dst.name", "sepa.dst.name", null);
addConstraint("btg.value", "sepa.btg.value", null);
addConstraint("btg.curr", "sepa.btg.curr", "EUR");
addConstraint("usage", "sepa.usage", "");
addConstraint("date", "sepa.date", null);
// Constraints für die PmtInfId (eindeutige SEPA Message ID) und EndToEndId (eindeutige ID um Transaktion zu
// identifizieren)
addConstraint("sepaid", "sepa.sepaid", getPainMessageId());
addConstraint("pmtinfid", "sepa.pmtinfid", getPainMessageId());
addConstraint("endtoendid", "sepa.endtoendid", ENDTOEND_ID_NOTPROVIDED);
addConstraint("purposecode", "sepa.purposecode", "");
}
/**
* Liefert den Lowlevel-Namen des Jobs.
*
* @return der Lowlevel-Namen des Jobs.
*/
public static String getLowlevelName() {
return "TermUebSEPADel";
}
/**
* @see org.kapott.hbci.GV.AbstractSEPAGV#getDefaultPainVersion()
*/
@Override
protected SepaVersion getDefaultPainVersion() {
return DEFAULT;
}
/**
* @see org.kapott.hbci.GV.AbstractSEPAGV#getPainType()
*/
@Override
protected SepaVersion.Type getPainType() {
return SepaVersion.Type.PAIN_001;
}
/**
* @see org.kapott.hbci.GV.AbstractSEPAGV#getPainJobName()
*/
@Override
public String getPainJobName() {
return "UebSEPA";
}
}