/* * * Copyright 2001 Sun Microsystems, Inc. All Rights Reserved. * * This software is the proprietary information of Sun Microsystems, Inc. * Use is subject to license terms. * */ package team; import java.util.*; import javax.ejb.*; public interface LocalLeague extends EJBLocalObject { public String getLeagueId(); public String getName(); public String getSport(); public Collection getTeams(); public void addTeam(LocalTeam team); public void dropTeam(LocalTeam team); public Set getCitiesOfThisLeague() throws FinderException; public LocalTeam getTeamByCity(String city) throws FinderException; public String getTeamsNameByCity(String city) throws FinderException; public Set getPlayersFromLeague() throws FinderException; }