-
- All Implemented Interfaces:
public interface IParkingUserServiceProvider
This interface defines the user data related methods that are requested for a proper running of the parking service. Client is responsible to provide an implementation of this interface.
-
-
Method Summary
Modifier and Type Method Description abstract Boolean
hasLicensePlate()
This method should confirm if the user has license plate. abstract Boolean
hasPhoneNumber()
This method should confirm if the user has phone number. abstract String
getUserToken()
This method should retrieve the user token. -
-
Method Detail
-
hasLicensePlate
abstract Boolean hasLicensePlate()
This method should confirm if the user has license plate.
-
hasPhoneNumber
abstract Boolean hasPhoneNumber()
This method should confirm if the user has phone number.
-
getUserToken
abstract String getUserToken()
This method should retrieve the user token.
-
-
-
-