com.auth0.jwk.Util Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwks-rsa Show documentation
Show all versions of jwks-rsa Show documentation
JSON Web Key Set parser library
package com.auth0.jwk;
class Util {
static boolean isNullOrEmpty(String s) {
return s == null || s.isEmpty();
}
static void checkArgument(boolean arg, String message) {
if (!arg) {
throw new IllegalArgumentException(String.valueOf(message));
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy