Package org.refcodes.net
Interface BasicAuthObservable<B extends BasicAuthObservable<B>>
-
- Type Parameters:
B
- the generic type
public interface BasicAuthObservable<B extends BasicAuthObservable<B>>
An observable which notifies the registeredBasicAuthObserver
on incoming HTTP Basic-Authentication requests. TODO: Provide means to add multipleBasicAuthObserver
instances and invoke them as of their locator pattern (provide an additional locator argument and an "BasicAuthEndpoint" class).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description B
onBasicAuthRequest(BasicAuthObserver aObserver)
Registers theBasicAuthObserver
to handle incoming HTTP basic authentication requests.
-
-
-
Method Detail
-
onBasicAuthRequest
B onBasicAuthRequest(BasicAuthObserver aObserver)
Registers theBasicAuthObserver
to handle incoming HTTP basic authentication requests.- Parameters:
aObserver
- The observer to handle incoming HTTP basic authentication requests.- Returns:
- the implementing instance as of the builder pattern
-
-