All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vertx.groovy.ext.auth.jdbc.JDBCHashStrategy_GroovyExtension Maven / Gradle / Ivy

There is a newer version: 4.5.13
Show newest version
package io.vertx.groovy.ext.auth.jdbc;
public class JDBCHashStrategy_GroovyExtension {
  public static java.lang.String getHashedStoredPwd(io.vertx.ext.auth.jdbc.JDBCHashStrategy j_receiver, java.util.List row) {
    return j_receiver.getHashedStoredPwd(row != null ? io.vertx.core.impl.ConversionHelper.toJsonArray(row) : null);
  }
  public static java.lang.String getSalt(io.vertx.ext.auth.jdbc.JDBCHashStrategy j_receiver, java.util.List row) {
    return j_receiver.getSalt(row != null ? io.vertx.core.impl.ConversionHelper.toJsonArray(row) : null);
  }
  public static void setNonces(io.vertx.ext.auth.jdbc.JDBCHashStrategy j_receiver, java.util.List nonces) {
    j_receiver.setNonces(nonces != null ? io.vertx.core.impl.ConversionHelper.toJsonArray(nonces) : null);
  }
}