Subversion Repositories SmartDukaan

Rev

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

Rev 1962 Rev 2027
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
    long authenticateUser(String username, String password);
8
    String authenticateUser(String username, String password);
9
}
9
}