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 TypeMethodDescriptionboolean
Match.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 TypeMethodDescriptionvoid
CarManagementService.deactivateCarsByPlayer
(Player player, net.andresbustamante.yafoot.commons.model.UserContext ctx) Deactivates all the cars registered by a player.void
PlayerManagementService.deactivatePlayer
(Player player, net.andresbustamante.yafoot.commons.model.UserContext userContext) Deactivates a player and deletes his/her history in the application.void
CarpoolingService.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.void
MatchManagementService.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.void
MatchManagementService.unregisterPlayer
(Player player, Match match, net.andresbustamante.yafoot.commons.model.UserContext userContext) Unregister a player from a match.void
MatchManagementService.unregisterPlayerFromAllMatches
(Player player, net.andresbustamante.yafoot.commons.model.UserContext userContext) Unregister a player from all matches.void
CarpoolingService.updateCarpoolingInformation
(Match match, Player player, Car car, boolean isCarConfirmed, net.andresbustamante.yafoot.commons.model.UserContext ctx) Update the car used for a registration.void
PlayerManagementService.updatePlayer
(Player player, net.andresbustamante.yafoot.commons.model.UserContext userContext) Updates basic details for a player.