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

org.kapott.hbci.GV.GVReceipt Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
package org.kapott.hbci.GV;

import org.kapott.hbci.GV_Result.HBCIJobResultImpl;
import org.kapott.hbci.manager.HBCIHandler;
import org.kapott.hbci.manager.LogFilter;

/**
 * Geschaeftsvorfall fuer das Senden der Empfangsquittung mittels HKQTG.
 */
public class GVReceipt extends HBCIJobImpl
{
    /**
     * Liefert den Lowlevel-Namen des Geschaeftsvorfalls.
     * @return der Lowlevel-Namen des Geschaeftsvorfalls.
     */
    public static String getLowlevelName()
    {
        return "Receipt";
    }
    
    /**
     * ct.
     * @param handler
     */
    public GVReceipt(HBCIHandler handler)
    {
      super(handler, getLowlevelName(), new HBCIJobResultImpl());
      addConstraint("receipt","receipt","", LogFilter.FILTER_NONE);
    }
    
    /**
     * @see org.kapott.hbci.GV.HBCIJobImpl#setParam(java.lang.String, java.lang.String)
     */
    public void setParam(String paramName, String value)
    {
        // Feld als binaer markieren
        if (paramName.equals("receipt"))
            value="B"+value;
        super.setParam(paramName,value);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy