Package io.vertx.mutiny.ext.auth
Class HashingAlgorithm
- java.lang.Object
-
- io.vertx.mutiny.ext.auth.HashingAlgorithm
-
public class HashingAlgorithm extends Object
Hashing Algorithm. A common interface to interact with any system provided algorithms. 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<HashingAlgorithm>
__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description HashingAlgorithm(io.vertx.ext.auth.HashingAlgorithm delegate)
HashingAlgorithm(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
io.vertx.ext.auth.HashingAlgorithm
getDelegate()
int
hashCode()
String
id()
boolean
needsSeparator()
static HashingAlgorithm
newInstance(io.vertx.ext.auth.HashingAlgorithm arg)
Set<String>
params()
String
toString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<HashingAlgorithm> __TYPE_ARG
-
-
Constructor Detail
-
HashingAlgorithm
public HashingAlgorithm(io.vertx.ext.auth.HashingAlgorithm delegate)
-
HashingAlgorithm
public HashingAlgorithm(Object delegate)
-
-
Method Detail
-
getDelegate
public io.vertx.ext.auth.HashingAlgorithm getDelegate()
-
id
public String id()
- Returns:
- short id e.g.: sha512.
-
needsSeparator
public boolean needsSeparator()
- Returns:
- true by default.
-
newInstance
public static HashingAlgorithm newInstance(io.vertx.ext.auth.HashingAlgorithm arg)
-
-