Package org.kapott.hbci.status

Examples of org.kapott.hbci.status.HBCIDialogStatus


        von der aufrufenden methode neu erzeugt werden */
    public HBCIDialogStatus doIt()
    {
        try {
            HBCIUtils.log("executing dialog",HBCIUtils.LOG_DEBUG);
            HBCIDialogStatus ret=new HBCIDialogStatus();
           
            HBCIPassportInternal passport=(HBCIPassportInternal)getParentHandler().getPassport();
           
            // first call passports's before-dialog-hook
            passport.beforeCustomDialogHook(this);
           
            HBCIMsgStatus initStatus=doDialogInit();
            ret.setInitStatus(initStatus);
               
            // so that e.g. pintan-passports can patch the list of messages to
            // be executed (needed for twostep-mech)
            passport.afterCustomDialogInitHook(this);
           
            if (initStatus.isOK()) {
                ret.setMsgStatus(doJobs());
                ret.setEndStatus(doDialogEnd());
            }
           
            return ret;
        } finally {
            reset();
View Full Code Here


                HBCIUtils.log("executing dialog for customerid "+customerid,HBCIUtils.LOG_INFO);
                passport.setCustomerId(customerid);
               
                try {
                    HBCIDialog dialog=getDialogFor(customerid);
                    HBCIDialogStatus dialogStatus=dialog.doIt();
                    ret.addDialogStatus(customerid,dialogStatus);
                } catch (Exception e) {
                    ret.addException(customerid,e);
                } finally {
                    dialogs.remove(customerid);
View Full Code Here

        reset();
       
        String customerId=passport.getCustomerId();
        getDialogFor(customerId);
        HBCIDialogStatus result=execute().getDialogStatus(customerId);
        return result;
    }
View Full Code Here

TOP

Related Classes of org.kapott.hbci.status.HBCIDialogStatus

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.