39 lines
682 B
Java
39 lines
682 B
Java
package ovh.herisson.Clyde.Tables;
|
|
|
|
public enum Applications {
|
|
// without any token
|
|
Login,
|
|
Schedule,
|
|
|
|
// with any token
|
|
Profile,
|
|
|
|
// Students and higher authorization
|
|
Msg,
|
|
Forum,
|
|
Rdv,
|
|
// teachers authorization
|
|
|
|
ManageOwnedLessons,
|
|
|
|
// teachers and Secretary authorization
|
|
ManageCourses,
|
|
UsersList,
|
|
|
|
//Secretary authorization
|
|
ManageSchedules,
|
|
LessonRequests,
|
|
|
|
// InscriptionService authorization
|
|
Requests,
|
|
// profile of a researcher
|
|
ResearcherProfile,
|
|
ManageResearcherProfile,
|
|
|
|
//the list of all researches (filterable)
|
|
ListResearches,
|
|
CreateUser,
|
|
StudentsList,
|
|
Payments
|
|
}
|