Class WalletAccountData
- java.lang.Object
-
- com.gemalto.mfs.mwsdk.mobilegateway.enrollment.WalletAccountData
-
public final class WalletAccountData extends java.lang.Object
The WalletAccountData are used by MPA for CheckCardEligibility.
-
-
Constructor Summary
Constructors Constructor Description WalletAccountData(java.lang.String accountId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getAccountId()
Fetch wallet user accountId.Address
getAddress()
Fetch address associated to wallet account.java.lang.String
getEmail()
Fetch email address associated to wallet account.java.lang.String
getName()
Fetch the full name of wallet account .void
setAccountId(java.lang.String accountId)
Set the wallet user accountId.void
setAddress(Address Address)
Set the address of the wallet account.void
setEmail(java.lang.String email)
Set the email associated to wallet account.void
setName(java.lang.String name)
Set full name of the wallet account.
-
-
-
Method Detail
-
getAccountId
public java.lang.String getAccountId()
Fetch wallet user accountId.- Returns:
- wallet user accountId.
-
setAccountId
public void setAccountId(java.lang.String accountId)
Set the wallet user accountId.- Parameters:
accountId
- wallet user accountId.
-
getName
public java.lang.String getName()
Fetch the full name of wallet account .- Returns:
- the full name of wallet account.
-
setName
public void setName(java.lang.String name)
Set full name of the wallet account.- Parameters:
name
- full name of the wallet account.
-
getEmail
public java.lang.String getEmail()
Fetch email address associated to wallet account.- Returns:
- email address associated to wallet account.
-
setEmail
public void setEmail(java.lang.String email)
Set the email associated to wallet account.- Parameters:
email
- email associated to wallet account.
-
getAddress
public Address getAddress()
Fetch address associated to wallet account.- Returns:
- address associated to wallet account.
-
setAddress
public void setAddress(Address Address)
Set the address of the wallet account.- Parameters:
Address
- address of the wallet account.
-
-