Class BshWebAccountInformation
- java.lang.Object
-
- de.frankmuenster.mahoe.web.AbstractWebAccountInformation
-
- de.frankmuenster.mahoe.banks.bsh.web.BshWebAccountInformation
-
- All Implemented Interfaces:
WebAccountInformation
public class BshWebAccountInformation extends AbstractWebAccountInformation
Bean mit Kontoinformationen von der Webseite- Version:
- 1.0
- Author:
- Frank Münster
-
-
Field Summary
-
Fields inherited from class de.frankmuenster.mahoe.web.AbstractWebAccountInformation
konto
-
-
Constructor Summary
Constructors Constructor Description BshWebAccountInformation()
Standardkonstruktor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getBsn()
java.lang.String
getContractLetter()
java.lang.String
getContractNumber()
java.lang.String
getType()
java.lang.String
getVtn()
boolean
isShowPassword()
protected void
saveBankSpecificInfo(de.willuhn.util.ProgressMonitor monitor)
Hier werden die webseitenspezifischen Kontoinformationen verarbeitet.void
setBsn(java.lang.String bsn)
void
setContractLetter(java.lang.String contractLetter)
void
setContractNumber(java.lang.String contractNumber)
void
setShowPassword(boolean showPassword)
void
setType(java.lang.String type)
void
setVtn(java.lang.String vtn)
-
Methods inherited from class de.frankmuenster.mahoe.web.AbstractWebAccountInformation
getBic, getComment, getIban, getKonto, getLastTransactionDate, getLastTransactionDateAsString, getSaldo, getSaldoAvailable, getSavePath, isStayLoggedIn, saveInformationInAccount, setBic, setComment, setIban, setKonto, setLastTransactionDate, setSaldo, setSaldoAvailable, setSavePath, setStayLoggedIn
-
-
-
-
Method Detail
-
getBsn
public java.lang.String getBsn()
- Returns:
- the bsn
-
getContractLetter
public java.lang.String getContractLetter()
- Returns:
- the contractLetter
-
getContractNumber
public java.lang.String getContractNumber()
- Returns:
- the contractNumber
-
getType
public java.lang.String getType()
- Returns:
- the type
-
getVtn
public java.lang.String getVtn()
- Returns:
- the vtn
-
isShowPassword
public boolean isShowPassword()
- Returns:
- the showPassword
-
setBsn
public void setBsn(java.lang.String bsn)
- Parameters:
bsn
- the bsn to set
-
setContractLetter
public void setContractLetter(java.lang.String contractLetter)
- Parameters:
contractLetter
- the contractLetter to set
-
setContractNumber
public void setContractNumber(java.lang.String contractNumber)
- Parameters:
contractNumber
- the contractNumber to set
-
setShowPassword
public void setShowPassword(boolean showPassword)
- Parameters:
showPassword
- the showPassword to set
-
setType
public void setType(java.lang.String type)
- Parameters:
type
- the type to set
-
setVtn
public void setVtn(java.lang.String vtn)
- Parameters:
vtn
- the vtn to set
-
saveBankSpecificInfo
protected void saveBankSpecificInfo(de.willuhn.util.ProgressMonitor monitor) throws de.willuhn.util.ApplicationException
Description copied from class:AbstractWebAccountInformation
Hier werden die webseitenspezifischen Kontoinformationen verarbeitet. Muss von der Child-Klasse implementiert werden.
Ein speichern des Kontos ist nicht erforderlich. das macht die Super-Klasse.- Specified by:
saveBankSpecificInfo
in classAbstractWebAccountInformation
- Throws:
de.willuhn.util.ApplicationException
- See Also:
AbstractWebAccountInformation.saveBankSpecificInfo(de.willuhn.util.ProgressMonitor)
-
-