Class DigestAuthHandler
- java.lang.Object
-
- io.vertx.reactivex.ext.web.handler.DigestAuthHandler
-
- All Implemented Interfaces:
Handler<RoutingContext>
,AuthenticationHandler
public class DigestAuthHandler extends Object implements AuthenticationHandler, Handler<RoutingContext>
An auth handler that provides HTTP Basic Authentication support.NOTE: This class has been automatically generated from the
original
non RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<DigestAuthHandler>
__TYPE_ARG
static long
DEFAULT_NONCE_EXPIRE_TIMEOUT
The default nonce expire timeout to use in milliseconds.
-
Constructor Summary
Constructors Constructor Description DigestAuthHandler(DigestAuthHandler delegate)
DigestAuthHandler(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DigestAuthHandler
create(Vertx vertx, HtdigestAuth authProvider)
Create a digest auth handlerstatic DigestAuthHandler
create(Vertx vertx, HtdigestAuth authProvider, long nonceExpireTimeout)
Create a digest auth handler, specifying the expire timeout for nonces.boolean
equals(Object o)
DigestAuthHandler
getDelegate()
void
handle(RoutingContext event)
Something has happened, so handle it.int
hashCode()
static DigestAuthHandler
newInstance(DigestAuthHandler arg)
String
toString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<DigestAuthHandler> __TYPE_ARG
-
DEFAULT_NONCE_EXPIRE_TIMEOUT
public static final long DEFAULT_NONCE_EXPIRE_TIMEOUT
The default nonce expire timeout to use in milliseconds.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
DigestAuthHandler
public DigestAuthHandler(DigestAuthHandler delegate)
-
DigestAuthHandler
public DigestAuthHandler(Object delegate)
-
-
Method Detail
-
getDelegate
public DigestAuthHandler getDelegate()
- Specified by:
getDelegate
in interfaceAuthenticationHandler
-
handle
public void handle(RoutingContext event)
Something has happened, so handle it.- Specified by:
handle
in interfaceAuthenticationHandler
- Specified by:
handle
in interfaceHandler<RoutingContext>
- Parameters:
event
- the event to handle
-
create
public static DigestAuthHandler create(Vertx vertx, HtdigestAuth authProvider)
Create a digest auth handler- Parameters:
vertx
- the vertx instanceauthProvider
- the auth provider to use- Returns:
- the auth handler
-
create
public static DigestAuthHandler create(Vertx vertx, HtdigestAuth authProvider, long nonceExpireTimeout)
Create a digest auth handler, specifying the expire timeout for nonces.- Parameters:
vertx
- the vertx instanceauthProvider
- the auth service to usenonceExpireTimeout
- the nonce expire timeout in milliseconds.- Returns:
- the auth handler
-
newInstance
public static DigestAuthHandler newInstance(DigestAuthHandler arg)
-
-