Project

General

Profile

1
package eu.dnetlib.repo.manager.client;
2

    
3
import com.google.gwt.user.client.rpc.RemoteService;
4
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
5
import eu.dnetlib.domain.functionality.UserProfile;
6
import eu.dnetlib.repo.manager.shared.UserAccessException;
7

    
8
/**
9
 * Created by stefania on 12/4/15.
10
 */
11
@RemoteServiceRelativePath("userService")
12
public interface UserService extends RemoteService {
13

    
14
    UserProfile login(String email, String password) throws UserAccessException;
15
}
(11-11/11)