File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 22
33# Java JWT
44
5- [ ![ Build Status ] ( https://travis-ci.org/ auth0/java-jwt.svg?branch=v3 )] ( https://travis-ci.org/ auth0/java-jwt )
5+ [ ![ CircleCI ] ( https://img.shields.io/circleci/project/github/ auth0/java-jwt.svg?style=flat-square )] ( https://circleci.com/gh/ auth0/java-jwt/tree/master )
66[ ![ Coverage Status] ( https://img.shields.io/codecov/c/github/auth0/java-jwt/v3.svg?style=flat-square )] ( https://codecov.io/github/auth0/java-jwt )
77[ ![ License] ( http://img.shields.io/:license-mit-blue.svg?style=flat )] ( http://doge.mit-license.org )
88
@@ -216,7 +216,7 @@ Additional Claims defined in the token's Header can be obtained by calling `getH
216216Claim claim = jwt. getHeaderClaim(" owner" );
217217```
218218
219- When creating a Token with the ` JWT.create() ` you can specify header Claims by calling ` withHeader() ` and passing both the map of claims.
219+ When creating a Token with the ` JWT.create() ` you can specify header Claims by calling ` withHeader() ` and passing both the map of claims.
220220
221221``` java
222222Map<String , Object > headerClaims = new HashMap ();
302302Claim claim = jwt. getClaim(" isAdmin" );
303303```
304304
305- When creating a Token with the ` JWT.create() ` you can specify a custom Claim by calling ` withClaim() ` and passing both the name and the value.
305+ When creating a Token with the ` JWT.create() ` you can specify a custom Claim by calling ` withClaim() ` and passing both the name and the value.
306306
307307``` java
308308String token = JWT . create()
You can’t perform that action at this time.
0 commit comments