Package com.nimbusds.jose.jwk.source
Class JWKSetWithTimestamp
- java.lang.Object
-
- com.nimbusds.jose.jwk.source.JWKSetWithTimestamp
-
@Deprecated @Immutable public final class JWKSetWithTimestamp extends Object
Deprecated.see RemoteJWKSet.JSON Web Key (JWK) set with timestamp.- Version:
- 2020-12-27
- Author:
- Vladimir Dzhuvinov
-
-
Constructor Summary
Constructors Constructor Description JWKSetWithTimestamp(JWKSet jwkSet)Deprecated.Creates a new JWK set with a timestamp set to now.JWKSetWithTimestamp(JWKSet jwkSet, Date timestamp)Deprecated.Creates a new JWK set with timestamp.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description DategetDate()Deprecated.Returns the timestamp date.JWKSetgetJWKSet()Deprecated.Returns the JWK set.
-
-
-
Constructor Detail
-
JWKSetWithTimestamp
public JWKSetWithTimestamp(JWKSet jwkSet)
Deprecated.Creates a new JWK set with a timestamp set to now.
-
JWKSetWithTimestamp
public JWKSetWithTimestamp(JWKSet jwkSet, Date timestamp)
Deprecated.Creates a new JWK set with timestamp.- Parameters:
jwkSet- The JWK set. Must not benull.timestamp- The timestamp date. Must not benull.
-
-