本文整理汇总了Java中com.auth0.jwt.interfaces.Claim.as方法的典型用法代码示例。如果您正苦于以下问题:Java Claim.as方法的具体用法?Java Claim.as怎么用?Java Claim.as使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.auth0.jwt.interfaces.Claim
的用法示例。
在下文中一共展示了Claim.as方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: shouldThrowIfCustomClassMismatch
import com.auth0.jwt.interfaces.Claim; //导入方法依赖的package包/类
@Test
public void shouldThrowIfCustomClassMismatch() throws Exception {
JsonNode value = mapper.valueToTree(new UserPojo("john", 123));
Claim claim = claimFromNode(value);
exception.expect(JWTDecodeException.class);
claim.as(String.class);
}
示例2: shouldGetAsMapValue
import com.auth0.jwt.interfaces.Claim; //导入方法依赖的package包/类
@SuppressWarnings({"unchecked", "RedundantCast"})
@Test
public void shouldGetAsMapValue() throws Exception {
JsonNode value = mapper.valueToTree(Collections.singletonMap("key", new UserPojo("john", 123)));
Claim claim = claimFromNode(value);
assertThat(claim, is(notNullValue()));
Map map = claim.as(Map.class);
assertThat(((Map<String, Object>) map.get("key")), hasEntry("name", (Object) "john"));
assertThat(((Map<String, Object>) map.get("key")), hasEntry("id", (Object) 123));
}