46 lines
1.4 KiB
Java
46 lines
1.4 KiB
Java
package enseirb.myinpulse.service;
|
|
|
|
import enseirb.myinpulse.model.*;
|
|
|
|
import org.springframework.http.HttpStatus;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.web.server.ResponseStatusException;
|
|
|
|
@Service
|
|
public class AdminApiService {
|
|
// TODO
|
|
public Iterable<Administrator> getProjects() {
|
|
throw new ResponseStatusException(HttpStatus.NOT_IMPLEMENTED, "Not implemented yet");
|
|
}
|
|
|
|
// TODO
|
|
public Iterable<DelAppointment> getUpcomingAppointments() {
|
|
throw new ResponseStatusException(HttpStatus.NOT_IMPLEMENTED, "Not implemented yet");
|
|
}
|
|
|
|
// TODO
|
|
public Iterable<DelProject> getPendingProjects() {
|
|
throw new ResponseStatusException(HttpStatus.NOT_IMPLEMENTED, "Not implemented yet");
|
|
}
|
|
|
|
// TODO
|
|
public void validateProject(ProjectDecision decision) {
|
|
throw new ResponseStatusException(HttpStatus.NOT_IMPLEMENTED, "Not implemented yet");
|
|
}
|
|
|
|
// TODO
|
|
public void addNewProject(DelProject project) {
|
|
throw new ResponseStatusException(HttpStatus.NOT_IMPLEMENTED, "Not implemented yet");
|
|
}
|
|
|
|
// TODO
|
|
public void createAppointmentReport(String appointmentId, DelReport report) {
|
|
throw new ResponseStatusException(HttpStatus.NOT_IMPLEMENTED, "Not implemented yet");
|
|
}
|
|
|
|
// TODO
|
|
public void deleteProject(String projectId) {
|
|
throw new ResponseStatusException(HttpStatus.NOT_IMPLEMENTED, "Not implemented yet");
|
|
}
|
|
}
|