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<Object> 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<Object> 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<Object> nonces) {
j_receiver.setNonces(nonces != null ? io.vertx.core.impl.ConversionHelper.toJsonArray(nonces) : null);
}
}