Uses of Class
com.authlete.common.dto.JoseVerifyRequest
-
Packages that use JoseVerifyRequest Package Description com.authlete.common.api The definition of Authlete API (AuthleteApi
) and the factory class (AuthleteApiFactory
).com.authlete.common.dto Requests to and responses from Authlete APIs and some data structures. -
-
Uses of JoseVerifyRequest in com.authlete.common.api
Methods in com.authlete.common.api with parameters of type JoseVerifyRequest Modifier and Type Method Description JoseVerifyResponse
AuthleteApi. verifyJose(JoseVerifyRequest request)
Verify a JOSE object. -
Uses of JoseVerifyRequest in com.authlete.common.dto
Methods in com.authlete.common.dto that return JoseVerifyRequest Modifier and Type Method Description JoseVerifyRequest
JoseVerifyRequest. setClientIdentifier(String clientIdentifier)
Set the identifier of the client application whose keys are required for verification of the JOSE object.JoseVerifyRequest
JoseVerifyRequest. setClockSkew(int clockSkew)
Set allowable clock skew in seconds.JoseVerifyRequest
JoseVerifyRequest. setJose(String jose)
Set a JOSE object that will be verified.JoseVerifyRequest
JoseVerifyRequest. setMandatoryClaims(String[] mandatoryClaims)
Set mandatory claims that are required to be included in the JOSE object.JoseVerifyRequest
JoseVerifyRequest. setSignedByClient(boolean signedByClient)
Set the flag which indicates whether the signature of the JOSE object has been signed by a client application with the client's private key or a shared symmetric key.
-