BrightSide Workbench Full Report + Source Code
AxConstants.java
Go to the documentation of this file.
1 /*
2  * TurrĂ³ i Cutiller Foundation. License notice.
3  * Copyright (C) 2023 Lluis TurrĂ³ Cutiller <http://www.turro.org/>
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU Affero General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU Affero General Public License for more details.
14  *
15  * You should have received a copy of the GNU Affero General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  */
18 
19 package org.turro.alliance.service;
20 
25 public class AxConstants {
26 
27 
28  public static final String
29 
30  // Alliance server
31 
32  MEMBER_PREFERENCES = "member-preferences",
33  SAVE_PREFERENCES = "save-preferences",
34  CATEGORY_ITERATOR = "category-iterator",
35  PHASE_ITERATOR = "phase-iterator",
36  PROJECT_ITERATOR = "project-iterator",
37  UPDATE_SERVER = "update-server",
38 
39  // Users
40 
41  USERS = "users",
42 
43  // Tags
44 
45  TAGS = "tags",
46 
47  // Attachments
48 
49  ATTACHMENT = "attachment",
50  ATTACHMENTS = "attachments",
51 
52  // Categories
53 
54  CATEGORY = "category",
55  CATEGORIES = "categories",
56 
57  // Descriptors
58 
59  DESCRIPTORS = "descriptors",
60 
61  // Projects
62 
63  PROJECT = "project",
64  PROJECTS = "projects",
65  BAN_STATUS = "ban-status",
66  BAN_TOGGLE = "ban-toggle",
67 
68  // Project participation
69 
70  PARTICIPATIONS = "participations",
71  AXPARTICIPATIONS = "axparticipations",
72  AXPENDING_REQUESTS = "axpending-requests",
73  AXPENDING_VALIDATE = "axpending-validate",
74  AXPENDING_DELETE = "axpending-delete",
75  AXPARTICIPANTS_ITERATOR = "axparticipants-iterator",
76  AXPARTICIPATION_REQUESTED = "axparticipation-requested",
77  AXPARTICIPATION_STATUS = "axparticipation-status",
78  AXPARTICIPATION_SAVE = "axparticipation-save",
79  AXPARTICIPATION_ASK = "axparticipation-ask",
80  AXFULL_PARTICIPATIONS = "axfull-participations",
81 
82  // Project grants
83 
84  PROJECT_GRANTS = "project-grants",
85  PROJECT_GRANT_ITERATOR = "project-grant-iterator",
86 
87  // Students
88 
89  CENTERS = "centers",
90  STUDENTS = "students",
91 
92  // Challenges
93 
94  TALENT_CATEGORY = "talent-category",
95  TALENT_CATEGORIES = "talent-categories",
96  CHALLENGES = "challenges";
97 
98 }