Interface OnlineExtdPayeeInterface
-
- All Known Implementing Classes:
OnlinePayee
,OnlinePayment
public interface OnlineExtdPayeeInterface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getDaysToPay()
Gets how many days before a payment is due that the money is deducted from the payer's account.boolean
getHasExtendedPayeeInfo()
Gets whether or not an object has extended payee info associated with it.java.lang.String
getPayeeID()
Get the ID of the payee.java.lang.String
getPayeeIDScope()
Gets the scope of the payee ID...java.lang.String
getPayeeName()
Get the name of the payeevoid
setDaysToPay(int daysToPay)
Sets how many days before a payment is due that the money is deducted from the payer's account.void
setHasExtendedPayeeInfo(boolean hasExtendedInfo)
Sets whether or not an object has extended payee info associated with it.void
setPayeeID(java.lang.String id)
Set the ID of the payee.void
setPayeeIDScope(java.lang.String idScope)
Sets the scope of the payee ID...void
setPayeeName(java.lang.String name)
Set the name of the payee
-
-
-
Method Detail
-
setHasExtendedPayeeInfo
void setHasExtendedPayeeInfo(boolean hasExtendedInfo)
Sets whether or not an object has extended payee info associated with it.
-
getHasExtendedPayeeInfo
boolean getHasExtendedPayeeInfo()
Gets whether or not an object has extended payee info associated with it.
-
setPayeeName
void setPayeeName(java.lang.String name)
Set the name of the payee
-
getPayeeName
java.lang.String getPayeeName()
Get the name of the payee
-
setPayeeID
void setPayeeID(java.lang.String id)
Set the ID of the payee.
-
getPayeeID
java.lang.String getPayeeID()
Get the ID of the payee.
-
setDaysToPay
void setDaysToPay(int daysToPay)
Sets how many days before a payment is due that the money is deducted from the payer's account. If the days-to-pay is -1 then the due date for a payment actually refers to when the payer's financial instution process the payment.
-
getDaysToPay
int getDaysToPay()
Gets how many days before a payment is due that the money is deducted from the payer's account. If the days-to-pay is -1 then the due date for a payment actually refers to when the payer's financial instution process the payment.
-
setPayeeIDScope
void setPayeeIDScope(java.lang.String idScope)
Sets the scope of the payee ID... either GLOBAL or USER.
-
getPayeeIDScope
java.lang.String getPayeeIDScope()
Gets the scope of the payee ID... either GLOBAL or USER.
-
-