package ejb.systemAdmin; import java.util.Collection; import javax.ejb.Remote; import TO.LoggedUserTO; import TO.MedicalSpecialtyTO; import TO.PatientTO; import TO.PrimaryHealthCareCenterTO; /** * * @author Marcos García Núñez (mgarcianun@uoc.edu) * */ @Remote public interface SystemAdminFacadeRemote { /** * Definimos la interfaz remota */ public LoggedUserTO login(String id, String pwd); public MedicalSpecialtyTO updateSpecialtyData(int id, String name, String description) throws Exception; }