Subversion Repositories SmartDukaan

Rev

Rev 2027 | Rev 2427 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2027 Rev 2359
Line 3... Line 3...
3
import com.google.gwt.user.client.rpc.RemoteService;
3
import com.google.gwt.user.client.rpc.RemoteService;
4
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
4
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
5
 
5
 
6
@RemoteServiceRelativePath("login")
6
@RemoteServiceRelativePath("login")
7
public interface LoginService extends RemoteService{
7
public interface LoginService extends RemoteService{
8
    String authenticateUser(String username, String password);
8
    String authenticateUser(String username, String password, int role);
9
}
9
}