Skip to content

Commit 0b02e98

Browse files
authored
Add missing javadoc
1 parent c77a678 commit 0b02e98

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

lib/src/main/java/com/auth0/jwt/interfaces/JWTVerifier.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
import com.auth0.jwt.exceptions.JWTVerificationException;
44

5+
56
public interface JWTVerifier {
7+
8+
/**
9+
* Performs the verification against the given Token
10+
*
11+
* @param token to verify.
12+
* @return a verified and decoded JWT.
13+
* @throws JWTVerificationException if any of the verification steps fail
14+
*/
615
DecodedJWT verify(String token) throws JWTVerificationException;
716
}

0 commit comments

Comments
 (0)