You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As discussed in #929, this issue represents the work to make available Request and Result builders in the JJWT api module for use when calling various JJWT Algorithm instances (e.g. SignatureAlgorithm, KeyAlgorithm, etc). For example:
The primary purpose of this work is to allow simple builder-based construction of concrete instances of the Request and Result interfaces so Algorithm implementors no longer need to:
implement those interfaces directly, which is especially helpful when writing unit tests), nor
create a compile-time dependency on the impl module.
As discussed in #929, this issue represents the work to make available
Request
andResult
builders in the JJWTapi
module for use when calling various JJWTAlgorithm
instances (e.g.SignatureAlgorithm
,KeyAlgorithm
, etc). For example:The primary purpose of this work is to allow simple builder-based construction of concrete instances of the
Request
andResult
interfaces soAlgorithm
implementors no longer need to:impl
module.cc @mrts
The text was updated successfully, but these errors were encountered: