Package io.vertx.reactivex.ext.auth.jdbc
Class JDBCAuthentication
- java.lang.Object
-
- io.vertx.reactivex.ext.auth.authentication.AuthenticationProvider
-
- io.vertx.reactivex.ext.auth.jdbc.JDBCAuthentication
-
- All Implemented Interfaces:
RxDelegate
@Deprecated public class JDBCAuthentication extends AuthenticationProvider implements RxDelegate
Deprecated.NOTE: This class has been automatically generated from theoriginalnon RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<JDBCAuthentication>__TYPE_ARGDeprecated.
-
Constructor Summary
Constructors Constructor Description JDBCAuthentication(JDBCAuthentication delegate)Deprecated.JDBCAuthentication(Object delegate)Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static JDBCAuthenticationcreate(JDBCClient client, JDBCAuthenticationOptions options)Deprecated.static JDBCAuthenticationcreate(JDBCClient client, JDBCHashStrategy hashStrategy, JDBCAuthenticationOptions options)Deprecated.booleanequals(Object o)Deprecated.JDBCAuthenticationgetDelegate()Deprecated.Stringhash(String id, String salt, String password)Deprecated.Stringhash(String id, Map<String,String> params, String salt, String password)Deprecated.inthashCode()Deprecated.static JDBCAuthenticationnewInstance(JDBCAuthentication arg)Deprecated.StringtoString()Deprecated.-
Methods inherited from class io.vertx.reactivex.ext.auth.authentication.AuthenticationProvider
authenticate, authenticate, authenticate, authenticate, newInstance, rxAuthenticate, rxAuthenticate
-
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<JDBCAuthentication> __TYPE_ARG
Deprecated.
-
-
Constructor Detail
-
JDBCAuthentication
public JDBCAuthentication(JDBCAuthentication delegate)
Deprecated.
-
JDBCAuthentication
public JDBCAuthentication(Object delegate)
Deprecated.
-
-
Method Detail
-
toString
public String toString()
Deprecated.- Overrides:
toStringin classAuthenticationProvider
-
equals
public boolean equals(Object o)
Deprecated.- Overrides:
equalsin classAuthenticationProvider
-
hashCode
public int hashCode()
Deprecated.- Overrides:
hashCodein classAuthenticationProvider
-
getDelegate
public JDBCAuthentication getDelegate()
Deprecated.- Specified by:
getDelegatein interfaceRxDelegate- Overrides:
getDelegatein classAuthenticationProvider
-
create
@Deprecated public static JDBCAuthentication create(JDBCClient client, JDBCHashStrategy hashStrategy, JDBCAuthenticationOptions options)
Deprecated.Create a JDBC auth provider implementation- Parameters:
client- the JDBC client instancehashStrategy- legacy hashing strategyoptions- authentication options- Returns:
- the auth provider
-
create
@Deprecated public static JDBCAuthentication create(JDBCClient client, JDBCAuthenticationOptions options)
Deprecated.Create a JDBC auth provider implementation- Parameters:
client- the JDBC client instanceoptions- authentication options- Returns:
- the auth provider
-
hash
@Deprecated public String hash(String id, Map<String,String> params, String salt, String password)
Deprecated.Hashes a password to be stored. See:HashingStrategy.hash(java.lang.String, java.util.Map<java.lang.String, java.lang.String>, java.lang.String, java.lang.String)- Parameters:
id-params-salt-password-- Returns:
-
hash
@Deprecated public String hash(String id, String salt, String password)
Deprecated.Hashes a password to be stored. See:HashingStrategy.hash(java.lang.String, java.util.Map<java.lang.String, java.lang.String>, java.lang.String, java.lang.String)- Parameters:
id-salt-password-- Returns:
-
newInstance
public static JDBCAuthentication newInstance(JDBCAuthentication arg)
Deprecated.
-
-