mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 02:52:02 -08:00
make jboss remoting2 work with openjdk11
This commit is contained in:
parent
a91b210456
commit
f36792be93
5 changed files with 61 additions and 29 deletions
|
|
@ -16,7 +16,6 @@ import mage.utils.MageVersion;
|
|||
import mage.view.*;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
import java.util.Set;
|
||||
import java.util.UUID;
|
||||
|
||||
|
|
@ -84,7 +83,7 @@ public interface MageServer {
|
|||
|
||||
boolean isTableOwner(String sessionId, UUID roomId, UUID tableId) throws MageException;
|
||||
|
||||
Optional<TableView> getTable(UUID roomId, UUID tableId) throws MageException;
|
||||
TableView getTable(UUID roomId, UUID tableId) throws MageException;
|
||||
|
||||
List<TableView> getTables(UUID roomId) throws MageException;
|
||||
|
||||
|
|
@ -95,13 +94,13 @@ public interface MageServer {
|
|||
|
||||
void leaveChat(UUID chatId, String sessionId) throws MageException;
|
||||
|
||||
Optional<UUID> getTableChatId(UUID tableId) throws MageException;
|
||||
UUID getTableChatId(UUID tableId) throws MageException;
|
||||
|
||||
Optional<UUID> getGameChatId(UUID gameId) throws MageException;
|
||||
UUID getGameChatId(UUID gameId) throws MageException;
|
||||
|
||||
Optional<UUID> getRoomChatId(UUID roomId) throws MageException;
|
||||
UUID getRoomChatId(UUID roomId) throws MageException;
|
||||
|
||||
Optional<UUID> getTournamentChatId(UUID tournamentId) throws MageException;
|
||||
UUID getTournamentChatId(UUID tournamentId) throws MageException;
|
||||
|
||||
//room methods
|
||||
UUID getMainRoomId() throws MageException;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue