void importObject(Object o, int idx, Map ctx) throws Exception
{
DBService service = de.willuhn.jameica.hbci.Settings.getDBService();
Properties prop = (Properties) o;
AuslandsUeberweisung u = (AuslandsUeberweisung) service.createObject(AuslandsUeberweisung.class,null);
u.setKonto(this.findKonto(prop.getProperty(ISEPAParser.Names.SRC_IBAN.getValue())));
u.setGegenkontoName(prop.getProperty(ISEPAParser.Names.DST_NAME.getValue()));
u.setGegenkontoNummer(prop.getProperty(ISEPAParser.Names.DST_IBAN.getValue()));
u.setGegenkontoBLZ(prop.getProperty(ISEPAParser.Names.DST_BIC.getValue()));
u.setZweck(prop.getProperty(ISEPAParser.Names.USAGE.getValue()));