public class BankingAccount extends Object
| Modifier and Type | Class and Description |
|---|---|
static class |
BankingAccount.OpenStatus |
| Constructor and Description |
|---|
BankingAccount() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object o) |
String |
getAccountId()
A unique ID of the account adhering to the standards for ID permanence
|
java.time.LocalDate |
getCreationDate()
Date that the account was created (if known)
|
String |
getDisplayName()
The display name of the account as defined by the bank.
|
Boolean |
getIsOwned()
Flag indicating that the customer associated with the authorisation is an owner of the account.
|
String |
getMaskedNumber()
A masked version of the account.
|
String |
getNickname()
A customer supplied nick name for the account
|
BankingAccount.OpenStatus |
getOpenStatus()
Get openStatus
|
BankingProductCategory |
getProductCategory()
Get productCategory
|
String |
getProductName()
The unique identifier of the account as defined by the account holder (akin to model number for the account)
|
int |
hashCode() |
void |
setAccountId(String accountId) |
void |
setCreationDate(java.time.LocalDate creationDate) |
void |
setDisplayName(String displayName) |
void |
setIsOwned(Boolean isOwned) |
void |
setMaskedNumber(String maskedNumber) |
void |
setNickname(String nickname) |
void |
setOpenStatus(BankingAccount.OpenStatus openStatus) |
void |
setProductCategory(BankingProductCategory productCategory) |
void |
setProductName(String productName) |
String |
toString() |
public String getAccountId()
public void setAccountId(String accountId)
public java.time.LocalDate getCreationDate()
public void setCreationDate(java.time.LocalDate creationDate)
public String getDisplayName()
public void setDisplayName(String displayName)
public Boolean getIsOwned()
public void setIsOwned(Boolean isOwned)
public String getMaskedNumber()
public void setMaskedNumber(String maskedNumber)
public String getNickname()
public void setNickname(String nickname)
public BankingAccount.OpenStatus getOpenStatus()
public void setOpenStatus(BankingAccount.OpenStatus openStatus)
public BankingProductCategory getProductCategory()
public void setProductCategory(BankingProductCategory productCategory)
public String getProductName()
public void setProductName(String productName)
Copyright © 2019. All rights reserved.