Class JDBCUserUtil
- java.lang.Object
-
- io.vertx.mutiny.ext.auth.jdbc.JDBCUserUtil
-
public class JDBCUserUtil extends Object
NOTE: This class has been automatically generated from theoriginalnon Mutiny-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<JDBCUserUtil>__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description JDBCUserUtil(io.vertx.ext.auth.jdbc.JDBCUserUtil delegate)JDBCUserUtil(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static JDBCUserUtilcreate(JDBCClient client)Deprecated.static JDBCUserUtilcreate(JDBCClient client, String insertUserSQL, String insertUserRoleSQL, String insertRolePermissionSQL)Deprecated.io.smallrye.mutiny.Uni<Void>createHashedUser(String username, String hash)Deprecated.VoidcreateHashedUserAndAwait(String username, String hash)Deprecated.JDBCUserUtilcreateHashedUserAndForget(String username, String hash)Deprecated.io.smallrye.mutiny.Uni<Void>createRolePermission(String role, String permission)Deprecated.VoidcreateRolePermissionAndAwait(String role, String permission)Deprecated.JDBCUserUtilcreateRolePermissionAndForget(String role, String permission)Deprecated.io.smallrye.mutiny.Uni<Void>createUser(String username, String password)Deprecated.VoidcreateUserAndAwait(String username, String password)Deprecated.JDBCUserUtilcreateUserAndForget(String username, String password)Deprecated.io.smallrye.mutiny.Uni<Void>createUserRole(String username, String role)Deprecated.VoidcreateUserRoleAndAwait(String username, String role)Deprecated.JDBCUserUtilcreateUserRoleAndForget(String username, String role)Deprecated.booleanequals(Object o)io.vertx.ext.auth.jdbc.JDBCUserUtilgetDelegate()inthashCode()static JDBCUserUtilnewInstance(io.vertx.ext.auth.jdbc.JDBCUserUtil arg)StringtoString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<JDBCUserUtil> __TYPE_ARG
-
-
Constructor Detail
-
JDBCUserUtil
public JDBCUserUtil(io.vertx.ext.auth.jdbc.JDBCUserUtil delegate)
-
JDBCUserUtil
public JDBCUserUtil(Object delegate)
-
-
Method Detail
-
getDelegate
public io.vertx.ext.auth.jdbc.JDBCUserUtil getDelegate()
-
create
@Deprecated public static JDBCUserUtil create(JDBCClient client)
Deprecated.- 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.- Parameters:
client- the client with write rights to the database.insertUserSQL-insertUserRoleSQL-insertRolePermissionSQL-- Returns:
- the instance
-
createUser
@CheckReturnValue @Deprecated public io.smallrye.mutiny.Uni<Void> createUser(String username, String password)
Deprecated.Insert a user into a database.Unlike the bare Vert.x variant, this method returns a
Uni. Don't forget to subscribe on it to trigger the operation.- Parameters:
username- the username to be setpassword- the passsword in clear text, will be adapted following the definitions of the defined strategy- Returns:
- the
unifiring the result of the operation when completed, or a failure if the operation failed.
-
createUserAndAwait
@Deprecated public Void createUserAndAwait(String username, String password)
Deprecated.Blocking variant ofcreateUser(String,String).This method waits for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in a RuntimeException).
- Parameters:
username- the username to be setpassword- the passsword in clear text, will be adapted following the definitions of the defined strategy- Returns:
- the Void instance produced by the operation.
-
createUserAndForget
@Deprecated public JDBCUserUtil createUserAndForget(String username, String password)
Deprecated.Variant ofcreateUser(String,String)that ignores the result of the operation.This method subscribes on the result of
createUser(String,String), but discards the outcome (item or failure). This method is useful to trigger the asynchronous operation fromcreateUser(String,String)but you don't need to compose it with other operations.- Parameters:
username- the username to be setpassword- the passsword in clear text, will be adapted following the definitions of the defined strategy- Returns:
- the instance of JDBCUserUtil to chain method calls.
-
createHashedUser
@CheckReturnValue @Deprecated public io.smallrye.mutiny.Uni<Void> createHashedUser(String username, String hash)
Deprecated.Insert a user into a database.Unlike the bare Vert.x variant, this method returns a
Uni. Don't forget to subscribe on it to trigger the operation.- 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:
- the
unifiring the result of the operation when completed, or a failure if the operation failed.
-
createHashedUserAndAwait
@Deprecated public Void createHashedUserAndAwait(String username, String hash)
Deprecated.Blocking variant ofcreateHashedUser(String,String).This method waits for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in a RuntimeException).
- 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:
- the Void instance produced by the operation.
-
createHashedUserAndForget
@Deprecated public JDBCUserUtil createHashedUserAndForget(String username, String hash)
Deprecated.Variant ofcreateHashedUser(String,String)that ignores the result of the operation.This method subscribes on the result of
createHashedUser(String,String), but discards the outcome (item or failure). This method is useful to trigger the asynchronous operation fromcreateHashedUser(String,String)but you don't need to compose it with other operations.- 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:
- the instance of JDBCUserUtil to chain method calls.
-
createUserRole
@CheckReturnValue @Deprecated public io.smallrye.mutiny.Uni<Void> createUserRole(String username, String role)
Deprecated.Insert a user role into a database.Unlike the bare Vert.x variant, this method returns a
Uni. Don't forget to subscribe on it to trigger the operation.- Parameters:
username- the username to be setrole- a to be set- Returns:
- the
unifiring the result of the operation when completed, or a failure if the operation failed.
-
createUserRoleAndAwait
@Deprecated public Void createUserRoleAndAwait(String username, String role)
Deprecated.Blocking variant ofcreateUserRole(String,String).This method waits for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in a RuntimeException).
- Parameters:
username- the username to be setrole- a to be set- Returns:
- the Void instance produced by the operation.
-
createUserRoleAndForget
@Deprecated public JDBCUserUtil createUserRoleAndForget(String username, String role)
Deprecated.Variant ofcreateUserRole(String,String)that ignores the result of the operation.This method subscribes on the result of
createUserRole(String,String), but discards the outcome (item or failure). This method is useful to trigger the asynchronous operation fromcreateUserRole(String,String)but you don't need to compose it with other operations.- Parameters:
username- the username to be setrole- a to be set- Returns:
- the instance of JDBCUserUtil to chain method calls.
-
createRolePermission
@CheckReturnValue @Deprecated public io.smallrye.mutiny.Uni<Void> createRolePermission(String role, String permission)
Deprecated.Insert a role permission into a database.Unlike the bare Vert.x variant, this method returns a
Uni. Don't forget to subscribe on it to trigger the operation.- Parameters:
role- a to be setpermission- the permission to be set- Returns:
- the
unifiring the result of the operation when completed, or a failure if the operation failed.
-
createRolePermissionAndAwait
@Deprecated public Void createRolePermissionAndAwait(String role, String permission)
Deprecated.Blocking variant ofcreateRolePermission(String,String).This method waits for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in a RuntimeException).
- Parameters:
role- a to be setpermission- the permission to be set- Returns:
- the Void instance produced by the operation.
-
createRolePermissionAndForget
@Deprecated public JDBCUserUtil createRolePermissionAndForget(String role, String permission)
Deprecated.Variant ofcreateRolePermission(String,String)that ignores the result of the operation.This method subscribes on the result of
createRolePermission(String,String), but discards the outcome (item or failure). This method is useful to trigger the asynchronous operation fromcreateRolePermission(String,String)but you don't need to compose it with other operations.- Parameters:
role- a to be setpermission- the permission to be set- Returns:
- the instance of JDBCUserUtil to chain method calls.
-
newInstance
public static JDBCUserUtil newInstance(io.vertx.ext.auth.jdbc.JDBCUserUtil arg)
-
-