forked from Coded/SIPRP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
432 B
24 lines
432 B
package shst.medicina.fichasclinicas.webservices;
|
|
|
|
import java.util.Map;
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import javax.ws.rs.core.Response;
|
|
|
|
|
|
public interface ILogin<T> {
|
|
|
|
//T doLogin(Map<String,Object> auth);
|
|
|
|
//T checkLogin();
|
|
|
|
//T doLogout();
|
|
|
|
Response doLogin(HttpServletRequest req, Map<String, Object> auth);
|
|
|
|
Response checkLogin(HttpServletRequest req);
|
|
|
|
Response doLogout(HttpServletRequest req);
|
|
|
|
}
|