Files
myhealth/1.sources/MyHealth/src/ejb/systemAdmin/SystemAdminFacadeRemote.java
2019-12-19 13:15:11 +01:00

26 lines
545 B
Java

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;
}