Package de.frankmuenster.mahoe.assistant
Class CreateInfo
- java.lang.Object
-
- de.frankmuenster.mahoe.assistant.CreateInfo
-
- Direct Known Subclasses:
AktienCreateInfo
,BosCreateInfo
,BshCreateInfo
,SantanderCreateInfo
,TargoBankCreateInfo
public class CreateInfo extends java.lang.Object
General info about an account. Can be extended for a specific bank and be used to create new account or update information.- Author:
- Frank Münster
-
-
Constructor Summary
Constructors Constructor Description CreateInfo()
Default constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description de.willuhn.jameica.hbci.rmi.KontoType
getAccountType()
java.lang.String
getComment()
java.lang.String
getDescription()
java.lang.String
getOwner()
int
getStatementsMaxDaysBack()
void
setAccountType(de.willuhn.jameica.hbci.rmi.KontoType accountType)
void
setComment(java.lang.String comment)
void
setDescription(java.lang.String description)
void
setOwner(java.lang.String owner)
void
setStatementsMaxDaysBack(int statementsMaxDaysBack)
-
-
-
Method Detail
-
getAccountType
public de.willuhn.jameica.hbci.rmi.KontoType getAccountType()
- Returns:
- the accountType
-
getComment
public java.lang.String getComment()
- Returns:
- the comment
-
getDescription
public java.lang.String getDescription()
- Returns:
- the description
-
getOwner
public java.lang.String getOwner()
- Returns:
- the owner
-
getStatementsMaxDaysBack
public int getStatementsMaxDaysBack()
- Returns:
- the statementsMaxDaysBack
-
setAccountType
public void setAccountType(de.willuhn.jameica.hbci.rmi.KontoType accountType)
- Parameters:
accountType
- the accountType to set
-
setComment
public void setComment(java.lang.String comment)
- Parameters:
comment
- the comment to set
-
setDescription
public void setDescription(java.lang.String description)
- Parameters:
description
- the description to set
-
setOwner
public void setOwner(java.lang.String owner)
- Parameters:
owner
- the owner to set
-
setStatementsMaxDaysBack
public void setStatementsMaxDaysBack(int statementsMaxDaysBack)
- Parameters:
statementsMaxDaysBack
- the statementsMaxDaysBack to set
-
-