- java.lang.Object
-
- services.RequestSupervisorService
-
- services.RequestFYPCoordinatorService
-
- All Implemented Interfaces:
IRequestFYPCoordinatorService,IRequestSupervisorService
public class RequestFYPCoordinatorService extends RequestSupervisorService implements IRequestFYPCoordinatorService
TheRequestFYPCoordinatorServiceclass extendsRequestSupervisorServiceand implementsIRequestFYPCoordinatorService, providing request-related functionalities for FYP Coordinators.
-
-
Constructor Summary
Constructors Constructor Description RequestFYPCoordinatorService()Constructs an instance of theRequestFYPCoordinatorServiceclass.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.ArrayList<Request>getAllRequests()Retrieves a list of all requests.java.util.ArrayList<Request>getSupervisorPendingRequests(java.lang.String fypCoordinatorID)Retrieves a list of pending requests made to the FYP Coordinator with the specified ID.-
Methods inherited from class services.RequestSupervisorService
approveProject, createTransferStudentRequest, getIncomingRequests, getOutgoingRequests, getStudentPendingRequests, rejectProject
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface interfaces.IRequestSupervisorService
approveProject, createTransferStudentRequest, getIncomingRequests, getOutgoingRequests, getStudentPendingRequests, rejectProject
-
-
-
-
Constructor Detail
-
RequestFYPCoordinatorService
public RequestFYPCoordinatorService()
Constructs an instance of theRequestFYPCoordinatorServiceclass.
-
-
Method Detail
-
getAllRequests
public java.util.ArrayList<Request> getAllRequests()
Description copied from interface:IRequestFYPCoordinatorServiceRetrieves a list of all requests.- Specified by:
getAllRequestsin interfaceIRequestFYPCoordinatorService- Returns:
- an
ArrayListofRequestobjects representing all the requests
-
getSupervisorPendingRequests
public java.util.ArrayList<Request> getSupervisorPendingRequests(java.lang.String fypCoordinatorID)
Description copied from interface:IRequestFYPCoordinatorServiceRetrieves a list of pending requests made to the FYP Coordinator with the specified ID.- Specified by:
getSupervisorPendingRequestsin interfaceIRequestFYPCoordinatorService- Parameters:
fypCoordinatorID- the ID of the FYP Coordinator- Returns:
- an
ArrayListofRequestobjects representing the pending requests made to the FYP Coordinator
-
-