Uses JWT, fixes some endpoints, adds base services

This commit is contained in:
Guillaume Tâche
2025-04-24 20:38:09 +02:00
parent 8a05f63687
commit a8e7a62b0c
113 changed files with 1625 additions and 380 deletions

View File

@@ -0,0 +1,32 @@
package ch.gtache.elderscrollslegends.service.matching;
import ch.gtache.elderscrollslegends.service.BaseService;
import jakarta.enterprise.context.ApplicationScoped;
import jakarta.inject.Inject;
import javax.sql.DataSource;
@ApplicationScoped
class MatchingService extends BaseService {
@Inject
MatchingService(final DataSource dataSource) {
super(dataSource);
}
Object reserve(final String steamID) {
return null;
}
void cancel(final String steamID, final String requestID, final String friendID) {
}
void respondChallenge(final String steamID, final String friendID, final String type) {
}
String requestOpponent(final String steamID, final String friendID) {
return null;
}
}