Package io.vertx.mutiny.ext.auth.jdbc
Class JDBCAuthorization
- java.lang.Object
-
- io.vertx.mutiny.ext.auth.authorization.AuthorizationProvider
-
- io.vertx.mutiny.ext.auth.jdbc.JDBCAuthorization
-
public class JDBCAuthorization extends AuthorizationProvider
Factory interface for creating instances that use the Vert.x JDBC client. NOTE: This class has been automatically generated from theoriginal
non Mutiny-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<JDBCAuthorization>
__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description JDBCAuthorization(io.vertx.ext.auth.jdbc.JDBCAuthorization delegate)
JDBCAuthorization(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static JDBCAuthorization
create(String providerId, JDBCClient client, io.vertx.ext.auth.jdbc.JDBCAuthorizationOptions options)
boolean
equals(Object o)
io.vertx.ext.auth.jdbc.JDBCAuthorization
getDelegate()
int
hashCode()
static JDBCAuthorization
newInstance(io.vertx.ext.auth.jdbc.JDBCAuthorization arg)
String
toString()
-
Methods inherited from class io.vertx.mutiny.ext.auth.authorization.AuthorizationProvider
create, getAuthorizations, getAuthorizationsAndAwait, getAuthorizationsAndForget, getId, newInstance
-
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<JDBCAuthorization> __TYPE_ARG
-
-
Constructor Detail
-
JDBCAuthorization
public JDBCAuthorization(io.vertx.ext.auth.jdbc.JDBCAuthorization delegate)
-
JDBCAuthorization
public JDBCAuthorization(Object delegate)
-
-
Method Detail
-
getDelegate
public io.vertx.ext.auth.jdbc.JDBCAuthorization getDelegate()
- Overrides:
getDelegate
in classAuthorizationProvider
-
toString
public String toString()
- Overrides:
toString
in classAuthorizationProvider
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classAuthorizationProvider
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classAuthorizationProvider
-
create
public static JDBCAuthorization create(String providerId, JDBCClient client, io.vertx.ext.auth.jdbc.JDBCAuthorizationOptions options)
- Parameters:
providerId
- the provider idclient
- the JDBC client instanceoptions
- theJDBCAuthorizationOptions
- Returns:
- the auth provider
-
newInstance
public static JDBCAuthorization newInstance(io.vertx.ext.auth.jdbc.JDBCAuthorization arg)
-
-