Uses of Class
net.andresbustamante.yafoot.core.model.Player
Packages that use Player
Package
Description
Model classes for the core module.
Core services API.
-
Uses of Player in net.andresbustamante.yafoot.core.model
Methods in net.andresbustamante.yafoot.core.model with parameters of type PlayerModifier and TypeMethodDescriptionbooleanMatch.isPlayerRegistered(Player player) Indicates whether a player is registered on the current match. -
Uses of Player in net.andresbustamante.yafoot.core.services
Methods in net.andresbustamante.yafoot.core.services that return PlayerModifier and TypeMethodDescriptionPlayerSearchService.findPlayerByEmail(String email, net.andresbustamante.yafoot.commons.model.UserContext context) Look for a player by using its email address (unique).PlayerSearchService.findPlayerById(Integer id) Look for a player by using its technical identifier.Methods in net.andresbustamante.yafoot.core.services with parameters of type PlayerModifier and TypeMethodDescriptionvoidCarManagementService.deactivateCarsByPlayer(Player player, net.andresbustamante.yafoot.commons.model.UserContext ctx) Deactivates all the cars registered by a player.voidPlayerManagementService.deactivatePlayer(Player player, net.andresbustamante.yafoot.commons.model.UserContext userContext) Deactivates a player and deletes his/her history in the application.voidCarpoolingService.processCarSeatRequest(Match match, Player player, Car car, net.andresbustamante.yafoot.commons.model.UserContext ctx) If the carpooling feature is enabled for the input match, it sends an email message asking for a place to the driver of the input car for this match.voidMatchManagementService.registerPlayer(Player player, Match match, Car car, net.andresbustamante.yafoot.commons.model.UserContext userContext) Register a player to an existing match.PlayerManagementService.savePlayer(Player player, net.andresbustamante.yafoot.commons.model.UserContext userContext) Creates a new player in the application.voidMatchManagementService.unregisterPlayer(Player player, Match match, net.andresbustamante.yafoot.commons.model.UserContext userContext) Unregister a player from a match.voidMatchManagementService.unregisterPlayerFromAllMatches(Player player, net.andresbustamante.yafoot.commons.model.UserContext userContext) Unregister a player from all matches.voidCarpoolingService.updateCarpoolingInformation(Match match, Player player, Car car, boolean isCarConfirmed, net.andresbustamante.yafoot.commons.model.UserContext ctx) Update the car used for a registration.voidPlayerManagementService.updatePlayer(Player player, net.andresbustamante.yafoot.commons.model.UserContext userContext) Updates basic details for a player.