mirror of https://github.com/jwtk/jjwt.git
Issue 39 - Add generic body type to the DefaultJws implementation.
This commit is contained in:
parent
6c2c90ad23
commit
73d4e788ef
|
@ -18,7 +18,7 @@ package io.jsonwebtoken.impl;
|
|||
import io.jsonwebtoken.Jws;
|
||||
import io.jsonwebtoken.JwsHeader;
|
||||
|
||||
public class DefaultJws<B> implements Jws {
|
||||
public class DefaultJws<B> implements Jws<B> {
|
||||
|
||||
private final JwsHeader header;
|
||||
private final B body;
|
||||
|
|
Loading…
Reference in New Issue