mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 03:22:00 -08:00
added method for updating expansions database
This commit is contained in:
parent
d541779d66
commit
e4ea8adf94
2 changed files with 17 additions and 3 deletions
|
|
@ -30,6 +30,7 @@ package mage.interfaces;
|
|||
|
||||
import mage.MageException;
|
||||
import mage.cards.decks.DeckCardLists;
|
||||
import mage.cards.repository.ExpansionInfo;
|
||||
import mage.game.GameException;
|
||||
import mage.game.match.MatchOptions;
|
||||
import mage.game.tournament.TournamentOptions;
|
||||
|
|
@ -50,6 +51,9 @@ public interface MageServer {
|
|||
boolean registerAdmin(String password, String sessionId, MageVersion version) throws MageException;
|
||||
void deregisterClient(String sessionId) throws MageException;
|
||||
|
||||
// update methods
|
||||
List<ExpansionInfo> getMissingExpansionData(List<String> codes);
|
||||
|
||||
// user methods
|
||||
boolean setUserData(String userName, String sessionId, UserDataView userDataView) throws MageException;
|
||||
void sendFeedbackMessage(String sessionId, String username, String title, String type, String message, String email) throws MageException;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue