I'm trying out jetty, embedded in my Java application.
I would like to be able to authenticate a user using a simple HTTP GET request including the login info. For instace:
http://host/login?user=foo&psw=bar
What's the best way to do this? Should I create a custom Authenticator
class? What's the best base class to start from and what to override?