Package org.kapott.hbci.protocol

Examples of org.kapott.hbci.protocol.SF


      super(Integer.parseInt(HBCIUtils.getParam("kernel.objpool.SF","128")));
    }
   
    public SF createSF(String type, String name, String path, char predelim, int idx, StringBuffer res, int fullResLen, Document syntax, Hashtable<String,String> predefs,Hashtable<String,String> valids)
    {
        SF ret=(SF)getFreeObject();
       
        if (ret==null) {
            // HBCIUtils.log("creating new SF object",HBCIUtils.LOG_DEBUG);
            ret=new SF(type,name,path,predelim,idx,res,fullResLen,syntax,predefs,valids);
            addToUsedPool(ret);
        } else {
            // HBCIUtils.log("reusing SF object",HBCIUtils.LOG_DEBUG);
            try {
                ret.init(type,name,path,predelim,idx,res,fullResLen,syntax,predefs,valids);
                addToUsedPool(ret);
            } catch (RuntimeException e) {
                addToFreePool(ret);
                throw e;
            }
View Full Code Here


        return ret;
    }
   
    public SF createSF(String type, String name, String path, int idx, Document syntax)
    {
        SF ret=(SF)getFreeObject();
       
        if (ret==null) {
            // HBCIUtils.log("creating new SF object",HBCIUtils.LOG_DEBUG);
            ret=new SF(type, name, path, idx, syntax);
            addToUsedPool(ret);
        } else {
            // HBCIUtils.log("reusing SF object",HBCIUtils.LOG_DEBUG);
            try {
                ret.init(type, name, path, idx, syntax);
                addToUsedPool(ret);
            } catch (RuntimeException e) {
                addToFreePool(ret);
                throw e;
            }
View Full Code Here

TOP

Related Classes of org.kapott.hbci.protocol.SF

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.