| /* |
| * Copyright (c) 2001, 2018 Oracle and/or its affiliates. All rights reserved. |
| * |
| * This program and the accompanying materials are made available under the |
| * terms of the Eclipse Public License v. 2.0, which is available at |
| * http://www.eclipse.org/legal/epl-2.0. |
| * |
| * This Source Code may also be made available under the following Secondary |
| * Licenses when the conditions for such availability set forth in the |
| * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, |
| * version 2 with the GNU Classpath Exception, which is available at |
| * https://www.gnu.org/software/classpath/license.html. |
| * |
| * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 |
| */ |
| |
| package roster; |
| |
| import java.rmi.RemoteException; |
| import java.util.ArrayList; |
| import jakarta.ejb.EJBObject; |
| import jakarta.ejb.FinderException; |
| import jakarta.ejb.RemoveException; |
| import util.LeagueDetails; |
| import util.PlayerDetails; |
| import util.TeamDetails; |
| import java.util.Set; |
| |
| public interface Roster extends EJBObject { |
| |
| // Players |
| |
| public void createPlayer(PlayerDetails details) |
| throws RemoteException; |
| |
| public void addPlayer(String playerId, String teamId) |
| throws RemoteException; |
| |
| public void removePlayer(String playerId) |
| throws RemoteException; |
| |
| public void dropPlayer(String playerId, String teamId) |
| throws RemoteException; |
| |
| public PlayerDetails getPlayer(String playerId) |
| throws RemoteException; |
| |
| public ArrayList getPlayersOfTeam(String teamId) |
| throws RemoteException; |
| |
| public ArrayList getPlayersOfTeamCopy(String teamId) |
| throws RemoteException; |
| |
| public ArrayList getPlayersByPosition(String position) |
| throws RemoteException; |
| |
| public ArrayList getPlayersByHigherSalary(String name) |
| throws RemoteException; |
| |
| public ArrayList getPlayersBySalaryRange(double low, double high) |
| throws RemoteException; |
| |
| public ArrayList getPlayersByLeagueId(String leagueId) |
| throws RemoteException; |
| |
| public ArrayList getPlayersBySport(String sport) |
| throws RemoteException; |
| |
| public ArrayList getPlayersByCity(String city) |
| throws RemoteException; |
| |
| public ArrayList getAllPlayers() |
| throws RemoteException; |
| |
| public ArrayList getPlayersNotOnTeam() |
| throws RemoteException; |
| |
| public ArrayList getPlayersByPositionAndName(String position, |
| String name) throws RemoteException; |
| |
| public ArrayList getLeaguesOfPlayer(String playerId) |
| throws RemoteException; |
| |
| public ArrayList getSportsOfPlayer(String playerId) |
| throws RemoteException; |
| |
| public double getSalaryOfPlayerFromTeam(String teamID, String playerName) |
| throws RemoteException; |
| |
| public ArrayList getPlayersOfLeague(String leagueId) |
| throws RemoteException; |
| |
| |
| public ArrayList getPlayersWithPositionsGoalkeeperOrDefender() |
| throws RemoteException; |
| |
| public ArrayList getPlayersWithNameEndingWithON() |
| throws RemoteException; |
| |
| public ArrayList getPlayersWithNullName() |
| throws RemoteException; |
| |
| public ArrayList getPlayersWithTeam(String teamId) |
| throws RemoteException; |
| |
| public ArrayList getPlayersWithSalaryUsingABS(double salary) |
| throws RemoteException; |
| |
| public ArrayList getPlayersWithSalaryUsingSQRT(double salary) |
| throws RemoteException; |
| |
| |
| // Teams |
| |
| public ArrayList getTeamsOfLeague(String leagueId) |
| throws RemoteException; |
| |
| public void createTeamInLeague(TeamDetails details, String leagueId) |
| throws RemoteException; |
| |
| public void removeTeam(String teamId) |
| throws RemoteException; |
| |
| public TeamDetails getTeam(String teamId) |
| throws RemoteException; |
| |
| public ArrayList getTeamsByPlayerAndLeague(String playerKey, |
| String leagueKey) |
| throws RemoteException; |
| |
| public ArrayList getTeamsByPlayerAndLeagueViaRemote(String playerKey, |
| String leagueKey) |
| throws RemoteException; |
| |
| |
| public Set getCitiesOfLeague(String leagueKey) throws RemoteException; |
| |
| public TeamDetails getTeamOfLeagueByCity(String leagueKey, String city) |
| throws RemoteException; |
| |
| public String getTeamsNameOfLeagueByCity(String leagueKey, String city) |
| throws RemoteException; |
| |
| public String getTeamNameVariations(String teamId) throws RemoteException; |
| |
| public TeamDetails getRemoteTeamOfLeagueByCity(String leagueKey, String city) |
| throws RemoteException; |
| |
| |
| // Leagues |
| |
| public void createLeague(LeagueDetails details) |
| throws RemoteException; |
| |
| public void removeLeague(String leagueId) |
| throws RemoteException; |
| |
| public LeagueDetails getLeague(String leagueId) |
| throws RemoteException; |
| |
| public LeagueDetails getLeagueByName(String name) |
| throws RemoteException; |
| |
| // Test |
| |
| public ArrayList getRemoteTeamsOfLeague(String leagueKey) throws RemoteException; |
| public ArrayList getRemotePlayersOfLeague(String leagueId) throws RemoteException; |
| public ArrayList getPlayersByLeagueIdWithNULL(String leagueId) throws RemoteException; |
| |
| public ArrayList testFinder(String parm1, String parm2, String parm3) |
| throws RemoteException; |
| |
| public void cleanUp() throws FinderException, RemoveException, RemoteException; |
| |
| } |