Interface SpecialServiceRequestFacade
- All Known Subinterfaces:
ShoppingSpecialServiceRequestFacade,TravelSpecialServiceRequestFacade
- All Known Implementing Classes:
DefaultShoppingSpecialServiceRequestFacade,DefaultSpecialServiceRequestFacade,DefaultTravelSpecialServiceRequestFacade
public interface SpecialServiceRequestFacade
Special Service Request Facade
-
Method Summary
Modifier and TypeMethodDescriptionvoidaddSpecialServiceRequestToTraveller(String travellerUid, String specialServiceRequestId) Add the given special service to the travellerReturn all the Special Service Request from the systemgetSpecialServiceRequestFromTraveller(String travellerUid) Get all the special service request from the given travellervoidremoveSpecialServiceRequestFromTraveller(String travellerUid, String specialServiceRequestId) Remove the special service request from the traveller
-
Method Details
-
findAllSpecialServiceRequests
List<SpecialServiceRequestData> findAllSpecialServiceRequests()Return all the Special Service Request from the system- Returns:
- List
-
addSpecialServiceRequestToTraveller
Add the given special service to the traveller- Parameters:
travellerUid- the travellerUidspecialServiceRequestId- the specialServiceRequestId
-
removeSpecialServiceRequestFromTraveller
Remove the special service request from the traveller- Parameters:
travellerUid- the travellerUidspecialServiceRequestId- the specialServiceRequestId
-
getSpecialServiceRequestFromTraveller
Get all the special service request from the given traveller- Parameters:
travellerUid- the travellerUid- Returns:
- List
-