Package io.vertx.rxjava.ext.auth.jdbc
Class JDBCUserUtil
- java.lang.Object
-
- io.vertx.rxjava.ext.auth.jdbc.JDBCUserUtil
-
- All Implemented Interfaces:
RxDelegate
@Deprecated public class JDBCUserUtil extends Object implements RxDelegate
Deprecated.NOTE: This class has been automatically generated from theoriginal
non RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<JDBCUserUtil>
__TYPE_ARG
Deprecated.
-
Constructor Summary
Constructors Constructor Description JDBCUserUtil(JDBCUserUtil delegate)
Deprecated.JDBCUserUtil(Object delegate)
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static JDBCUserUtil
create(JDBCClient client)
Deprecated.static JDBCUserUtil
create(JDBCClient client, String insertUserSQL, String insertUserRoleSQL, String insertRolePermissionSQL)
Deprecated.JDBCUserUtil
createHashedUser(String username, String hash)
Deprecated.JDBCUserUtil
createHashedUser(String username, String hash, Handler<AsyncResult<Void>> resultHandler)
Deprecated.JDBCUserUtil
createRolePermission(String role, String permission)
Deprecated.JDBCUserUtil
createRolePermission(String role, String permission, Handler<AsyncResult<Void>> resultHandler)
Deprecated.JDBCUserUtil
createUser(String username, String password)
Deprecated.JDBCUserUtil
createUser(String username, String password, Handler<AsyncResult<Void>> resultHandler)
Deprecated.JDBCUserUtil
createUserRole(String username, String role)
Deprecated.JDBCUserUtil
createUserRole(String username, String role, Handler<AsyncResult<Void>> resultHandler)
Deprecated.boolean
equals(Object o)
Deprecated.JDBCUserUtil
getDelegate()
Deprecated.int
hashCode()
Deprecated.static JDBCUserUtil
newInstance(JDBCUserUtil arg)
Deprecated.rx.Single<Void>
rxCreateHashedUser(String username, String hash)
Deprecated.rx.Single<Void>
rxCreateRolePermission(String role, String permission)
Deprecated.rx.Single<Void>
rxCreateUser(String username, String password)
Deprecated.rx.Single<Void>
rxCreateUserRole(String username, String role)
Deprecated.String
toString()
Deprecated.
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<JDBCUserUtil> __TYPE_ARG
Deprecated.
-
-
Constructor Detail
-
JDBCUserUtil
public JDBCUserUtil(JDBCUserUtil delegate)
Deprecated.
-
JDBCUserUtil
public JDBCUserUtil(Object delegate)
Deprecated.
-
-
Method Detail
-
getDelegate
public JDBCUserUtil getDelegate()
Deprecated.- Specified by:
getDelegate
in interfaceRxDelegate
-
create
@Deprecated public static JDBCUserUtil create(JDBCClient client)
Deprecated.Create an instance of the user helper.- Parameters:
client
- the client with write rights to the database.- Returns:
- the instance
-
create
@Deprecated public static JDBCUserUtil create(JDBCClient client, String insertUserSQL, String insertUserRoleSQL, String insertRolePermissionSQL)
Deprecated.Create an instance of the user helper with custom queries.- Parameters:
client
- the client with write rights to the database.insertUserSQL
-insertUserRoleSQL
-insertRolePermissionSQL
-- Returns:
- the instance
-
createUser
@Deprecated public JDBCUserUtil createUser(String username, String password, Handler<AsyncResult<Void>> resultHandler)
Deprecated.Insert a user into a database.- Parameters:
username
- the username to be setpassword
- the passsword in clear text, will be adapted following the definitions of the defined strategyresultHandler
- the ResultHandler will be provided with the result of the operation- Returns:
- fluent self
-
createUser
@Deprecated public JDBCUserUtil createUser(String username, String password)
Deprecated.Insert a user into a database.- Parameters:
username
- the username to be setpassword
- the passsword in clear text, will be adapted following the definitions of the defined strategy- Returns:
- fluent self
-
rxCreateUser
@Deprecated public rx.Single<Void> rxCreateUser(String username, String password)
Deprecated.Insert a user into a database.- Parameters:
username
- the username to be setpassword
- the passsword in clear text, will be adapted following the definitions of the defined strategy- Returns:
- fluent self
-
createHashedUser
@Deprecated public JDBCUserUtil createHashedUser(String username, String hash, Handler<AsyncResult<Void>> resultHandler)
Deprecated.Insert a user into a database.- Parameters:
username
- the username to be sethash
- the password hash, as result ofHashingStrategy.hash(java.lang.String, java.util.Map<java.lang.String, java.lang.String>, java.lang.String, java.lang.String)
resultHandler
- the ResultHandler will be provided with the result of the operation- Returns:
- fluent self
-
createHashedUser
@Deprecated public JDBCUserUtil createHashedUser(String username, String hash)
Deprecated.Insert a user into a database.- Parameters:
username
- the username to be sethash
- the password hash, as result ofHashingStrategy.hash(java.lang.String, java.util.Map<java.lang.String, java.lang.String>, java.lang.String, java.lang.String)
- Returns:
- fluent self
-
rxCreateHashedUser
@Deprecated public rx.Single<Void> rxCreateHashedUser(String username, String hash)
Deprecated.Insert a user into a database.- Parameters:
username
- the username to be sethash
- the password hash, as result ofHashingStrategy.hash(java.lang.String, java.util.Map<java.lang.String, java.lang.String>, java.lang.String, java.lang.String)
- Returns:
- fluent self
-
createUserRole
@Deprecated public JDBCUserUtil createUserRole(String username, String role, Handler<AsyncResult<Void>> resultHandler)
Deprecated.Insert a user role into a database.- Parameters:
username
- the username to be setrole
- a to be setresultHandler
- the ResultHandler will be provided with the result of the operation- Returns:
- fluent self
-
createUserRole
@Deprecated public JDBCUserUtil createUserRole(String username, String role)
Deprecated.Insert a user role into a database.- Parameters:
username
- the username to be setrole
- a to be set- Returns:
- fluent self
-
rxCreateUserRole
@Deprecated public rx.Single<Void> rxCreateUserRole(String username, String role)
Deprecated.Insert a user role into a database.- Parameters:
username
- the username to be setrole
- a to be set- Returns:
- fluent self
-
createRolePermission
@Deprecated public JDBCUserUtil createRolePermission(String role, String permission, Handler<AsyncResult<Void>> resultHandler)
Deprecated.Insert a role permission into a database.- Parameters:
role
- a to be setpermission
- the permission to be setresultHandler
- the ResultHandler will be provided with the result of the operation- Returns:
- fluent self
-
createRolePermission
@Deprecated public JDBCUserUtil createRolePermission(String role, String permission)
Deprecated.Insert a role permission into a database.- Parameters:
role
- a to be setpermission
- the permission to be set- Returns:
- fluent self
-
rxCreateRolePermission
@Deprecated public rx.Single<Void> rxCreateRolePermission(String role, String permission)
Deprecated.Insert a role permission into a database.- Parameters:
role
- a to be setpermission
- the permission to be set- Returns:
- fluent self
-
newInstance
public static JDBCUserUtil newInstance(JDBCUserUtil arg)
Deprecated.
-
-