Package org.kapott.hbci.smartcardio

Examples of org.kapott.hbci.smartcardio.DDVBankData


     * @see org.kapott.hbci.passport.HBCIPassportDDV#ctReadBankData()
     */
    protected void ctReadBankData()
    {
      int idx = this.getEntryIdx()-1;
      DDVBankData bankData = this.cardService.readBankData(idx);
     
      this.setCountry(SyntaxCtr.getName(bankData.country));
      this.setBLZ(bankData.blz);
      this.setHost(bankData.commaddr);
      this.setUserId(bankData.userid);
View Full Code Here


     * @see org.kapott.hbci.passport.HBCIPassportDDV#ctSaveBankData()
     */
    protected void ctSaveBankData()
    {
      int idx = this.getEntryIdx()-1;
      DDVBankData bankData;
     
      bankData=cardService.readBankData(idx);
      bankData.country=SyntaxCtr.getCode(this.getCountry());
      bankData.blz=this.getBLZ();
      bankData.commaddr=this.getHost();
View Full Code Here

TOP

Related Classes of org.kapott.hbci.smartcardio.DDVBankData

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.