![JAR search and dependency download from the Maven repository](/logo.png)
com.auth0.jwt.impl.JsonNodeClaim Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-jwt-nodependencies Show documentation
Show all versions of java-jwt-nodependencies Show documentation
This is a drop in replacement for the auth0 java-jwt library (see https://github.com/auth0/java-jwt). This jar makes sure there are no external dependencies (e.g. fasterXml, Apacha Commons) needed. This is useful when deploying to an application server (e.g. tomcat with Alfreso or Pega).
The newest version!
package com.auth0.jwt.impl;
import com.auth0.jwt.exceptions.JWTDecodeException;
import com.auth0.jwt.interfaces.Claim;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import java.io.IOException;
import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Map;
/**
* The JsonNodeClaim retrieves a claim value from a JsonNode object.
*/
class JsonNodeClaim implements Claim {
private final JsonNode data;
private JsonNodeClaim(JsonNode node) {
this.data = node;
}
@Override
public Boolean asBoolean() {
return !data.isBoolean() ? null : data.asBoolean();
}
@Override
public Integer asInt() {
return !data.isNumber() ? null : data.asInt();
}
@Override
public Long asLong() {
return !data.isNumber() ? null : data.asLong();
}
@Override
public Double asDouble() {
return !data.isNumber() ? null : data.asDouble();
}
@Override
public String asString() {
return !data.isTextual() ? null : data.asText();
}
@Override
public Date asDate() {
if (!data.canConvertToLong()) {
return null;
}
long seconds = data.asLong();
return new Date(seconds * 1000);
}
@Override
@SuppressWarnings("unchecked")
public T[] asArray(Class tClazz) throws JWTDecodeException {
if (!data.isArray()) {
return null;
}
ObjectMapper mapper = new ObjectMapper();
T[] arr = (T[]) Array.newInstance(tClazz, data.size());
for (int i = 0; i < data.size(); i++) {
try {
arr[i] = mapper.treeToValue(data.get(i), tClazz);
} catch (JsonProcessingException e) {
throw new JWTDecodeException("Couldn't map the Claim's array contents to " + tClazz.getSimpleName(), e);
}
}
return arr;
}
@Override
public List asList(Class tClazz) throws JWTDecodeException {
if (!data.isArray()) {
return null;
}
ObjectMapper mapper = new ObjectMapper();
List list = new ArrayList<>();
for (int i = 0; i < data.size(); i++) {
try {
list.add(mapper.treeToValue(data.get(i), tClazz));
} catch (JsonProcessingException e) {
throw new JWTDecodeException("Couldn't map the Claim's array contents to " + tClazz.getSimpleName(), e);
}
}
return list;
}
@Override
public Map asMap() throws JWTDecodeException {
if (!data.isObject()) {
return null;
}
ObjectMapper mapper = new ObjectMapper();
try {
TypeReference
© 2015 - 2025 Weber Informatics LLC | Privacy Policy