Class RestHandler
java.lang.Object
fr.multimc.api.commons.data.handlers.RestHandler
- All Implemented Interfaces:
ITeamHandler
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGet all the players sorted by team codeGet all the team scores sorted by team codeGet all the team names sorted by team codegetTeams()
void
Set all the team scores
-
Constructor Details
-
RestHandler
Create a new RestHandler- Parameters:
api
-RestAPI
to use
-
-
Method Details
-
getPlayersByTeam
Description copied from interface:ITeamHandler
Get all the players sorted by team code- Specified by:
getPlayersByTeam
in interfaceITeamHandler
- Returns:
Map
<String
,List
<String
>> with team code as key and player usernames as value
-
getTeamNamesByTeam
Description copied from interface:ITeamHandler
Get all the team names sorted by team code- Specified by:
getTeamNamesByTeam
in interfaceITeamHandler
- Returns:
Map
<String
,String
> with team code as key and team name as value
-
getScores
Description copied from interface:ITeamHandler
Get all the team scores sorted by team code- Specified by:
getScores
in interfaceITeamHandler
- Returns:
Map
<String
,Integer
> with team code as key and team score as value
-
getTeams
-
setScores
Description copied from interface:ITeamHandler
Set all the team scores- Specified by:
setScores
in interfaceITeamHandler
- Parameters:
scores
-Map
<String
,Integer
> with team code as key and team score as value
-