Interface OnlineBankAcctToInterface
-
- All Known Implementing Classes:
OnlinePayee
,OnlinePayment
,OnlineTxn
public interface OnlineBankAcctToInterface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getAcctToAcctID()
get info identifying the account to transfer the money to/from if this was a transfer to/from a bank accountjava.lang.String
getAcctToBankBranch()
Get the branch of this payee's bank account.java.lang.String
getAcctToBankCity()
Get the city of this payee's bank.java.lang.String
getAcctToBankID()
get info identifying the bank to transfer the money to/from if this was a transfer to/from a bank accountjava.lang.String
getAcctToBankName()
Get the name of this payee's bank account.java.lang.String
getAcctToBankPostal()
Get the postal code of this payee's bank.java.lang.String
getAcctToBranchID()
Get the branch ID of the account for this payee.java.lang.String
getAcctToKey()
Get the key for this payee's account.java.lang.String
getAcctToPTTAcctID()
Get the PTT ID of this payee's bank.java.lang.String
getAcctToType()
Get the type of account for this payee.boolean
getHasBankAcctTo()
Get whether or not there is destination bank account info.boolean
getHasExtendedAcctToInfo()
Get whether or not this payee has extended to-account information available.void
setAcctToAcctID(java.lang.String toBankAccountNum)
set info identifying the account to transfer the money to/from if this was a transfer to/from a bank accountvoid
setAcctToBankBranch(java.lang.String bankBranch)
Set the branch of this payee's bank account.void
setAcctToBankCity(java.lang.String bankCity)
Set the city of this payee's bank.void
setAcctToBankID(java.lang.String toBankBankID)
set info identifying the bank to transfer the money to/from if this was a transfer to/from a bank accountvoid
setAcctToBankName(java.lang.String bankName)
Set the name of this payee's bank account.void
setAcctToBankPostal(java.lang.String bankPostalCode)
Set the postal code of this payee's bank.void
setAcctToBranchID(java.lang.String branchID)
Set the branch ID of the account for this payee.void
setAcctToKey(java.lang.String acctKey)
Set the key for this payee's account.void
setAcctToPTTAcctID(java.lang.String pttAcctID)
Set the PTT ID of this payee's bank.void
setAcctToType(java.lang.String acctType)
Set the type of account for this payee.void
setHasBankAcctTo(boolean hasBankAcctTo)
Set whether or not there is destination bank account info.void
setHasExtendedAcctToInfo(boolean hasExtdInfo)
Set whether or not this payee has extended to-account information available.
-
-
-
Method Detail
-
setHasBankAcctTo
void setHasBankAcctTo(boolean hasBankAcctTo)
Set whether or not there is destination bank account info.
-
getHasBankAcctTo
boolean getHasBankAcctTo()
Get whether or not there is destination bank account info.
-
setAcctToAcctID
void setAcctToAcctID(java.lang.String toBankAccountNum)
set info identifying the account to transfer the money to/from if this was a transfer to/from a bank account
-
getAcctToAcctID
java.lang.String getAcctToAcctID()
get info identifying the account to transfer the money to/from if this was a transfer to/from a bank account
-
setAcctToBankID
void setAcctToBankID(java.lang.String toBankBankID)
set info identifying the bank to transfer the money to/from if this was a transfer to/from a bank account
-
getAcctToBankID
java.lang.String getAcctToBankID()
get info identifying the bank to transfer the money to/from if this was a transfer to/from a bank account
-
setAcctToBranchID
void setAcctToBranchID(java.lang.String branchID)
Set the branch ID of the account for this payee.
-
getAcctToBranchID
java.lang.String getAcctToBranchID()
Get the branch ID of the account for this payee.
-
setAcctToType
void setAcctToType(java.lang.String acctType)
Set the type of account for this payee.
-
getAcctToType
java.lang.String getAcctToType()
Get the type of account for this payee.
-
setAcctToKey
void setAcctToKey(java.lang.String acctKey)
Set the key for this payee's account.
-
getAcctToKey
java.lang.String getAcctToKey()
Get the key for this payee's account.
-
setHasExtendedAcctToInfo
void setHasExtendedAcctToInfo(boolean hasExtdInfo)
Set whether or not this payee has extended to-account information available.
-
getHasExtendedAcctToInfo
boolean getHasExtendedAcctToInfo()
Get whether or not this payee has extended to-account information available.
-
setAcctToBankName
void setAcctToBankName(java.lang.String bankName)
Set the name of this payee's bank account.
-
getAcctToBankName
java.lang.String getAcctToBankName()
Get the name of this payee's bank account.
-
setAcctToBankBranch
void setAcctToBankBranch(java.lang.String bankBranch)
Set the branch of this payee's bank account.
-
getAcctToBankBranch
java.lang.String getAcctToBankBranch()
Get the branch of this payee's bank account.
-
setAcctToBankCity
void setAcctToBankCity(java.lang.String bankCity)
Set the city of this payee's bank.
-
getAcctToBankCity
java.lang.String getAcctToBankCity()
Get the city of this payee's bank.
-
setAcctToBankPostal
void setAcctToBankPostal(java.lang.String bankPostalCode)
Set the postal code of this payee's bank.
-
getAcctToBankPostal
java.lang.String getAcctToBankPostal()
Get the postal code of this payee's bank.
-
setAcctToPTTAcctID
void setAcctToPTTAcctID(java.lang.String pttAcctID)
Set the PTT ID of this payee's bank.
-
getAcctToPTTAcctID
java.lang.String getAcctToPTTAcctID()
Get the PTT ID of this payee's bank.
-
-