-
- All Implemented Interfaces:
public interface IVoiceUserServiceProvider
This interface defines the user data related methods that are requested for a proper running of the voice service. Client is responsible to provide an implementation of this interface.
-
-
Method Summary
Modifier and Type Method Description abstract String
getUserToken()
This method should retrieve the user token. abstract String
getLicensePlate()
This method should retrieve the license plate. abstract String
getPhoneNumber()
This method should retrieve the phone number. abstract String
getCard()
This method should retrieve payment card information. abstract String
getFirstName()
This method should retrieve the first name of the user. abstract String
getLastName()
This method should retrieve the last name of the user. abstract String
getUserEmail()
This method should retrieve the email address of the user. -
-
Method Detail
-
getUserToken
abstract String getUserToken()
This method should retrieve the user token.
-
getLicensePlate
abstract String getLicensePlate()
This method should retrieve the license plate.
-
getPhoneNumber
abstract String getPhoneNumber()
This method should retrieve the phone number.
-
getFirstName
abstract String getFirstName()
This method should retrieve the first name of the user.
-
getLastName
abstract String getLastName()
This method should retrieve the last name of the user.
-
getUserEmail
abstract String getUserEmail()
This method should retrieve the email address of the user.
-
-
-
-