Searched defs:jwtTokenLifeTime (Results 1 - 4 of 4) sorted by relevance

/forgerock/openam-v13/openam-oauth2-common/openid-connect-core/src/main/java/org/forgerock/openidconnect/
H A DClientBuilder.java57 private Long jwtTokenLifeTime; field in class:ClientBuilder
343 * @param jwtTokenLifeTime JWT token lifetime.
345 public ClientBuilder setJwtTokenLifeTime(Long jwtTokenLifeTime) { argument
346 this.jwtTokenLifeTime = jwtTokenLifeTime;
360 authorizationCodeLifeTime, accessTokenLifeTime, refreshTokenLifeTime, jwtTokenLifeTime);
H A DClient.java344 * @param jwtTokenLifeTime The client's JWT token lifetime.
353 Long accessTokenLifeTime, Long refreshTokenLifeTime, Long jwtTokenLifeTime) {
383 setJwtTokenLifeTime(jwtTokenLifeTime);
1036 * @param jwtTokenLifeTime The JWT token lifetime.
1038 public void setJwtTokenLifeTime(Long jwtTokenLifeTime) { argument
1039 if (jwtTokenLifeTime != null) {
1040 put(OAuth2Constants.ShortClientAttributeNames.JWT_TOKEN_LIFE_TIME.getType(), jwtTokenLifeTime);
346 Client(String clientID, String clientType, List<String> redirectionURIs, List<String> allowedGrantScopes, List<String> defaultGrantScopes, List<String> displayName, List<String> displayDescription, List<String> clientName, String subjectType, String idTokenSignedResponseAlgorithm, List<String> postLogoutRedirectionURIs, String accessToken, String clientSessionURI, String applicationType, String clientSecret, List<String> responseTypes, List<String> contacts, Long defaultMaxAge, Boolean defaultMaxAgeEnabled, String tokenEndpointAuthMethod, String jwks, String jwksUri, String x509, String selector, String sectorIdUri, Long authorizationCodeLifeTime, Long accessTokenLifeTime, Long refreshTokenLifeTime, Long jwtTokenLifeTime) argument
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openidconnect/
H A DClientBuilder.java57 private Long jwtTokenLifeTime; field in class:ClientBuilder
343 * @param jwtTokenLifeTime JWT token lifetime.
345 public ClientBuilder setJwtTokenLifeTime(Long jwtTokenLifeTime) { argument
346 this.jwtTokenLifeTime = jwtTokenLifeTime;
360 authorizationCodeLifeTime, accessTokenLifeTime, refreshTokenLifeTime, jwtTokenLifeTime);
H A DClient.java344 * @param jwtTokenLifeTime The client's JWT token lifetime.
353 Long accessTokenLifeTime, Long refreshTokenLifeTime, Long jwtTokenLifeTime) {
383 setJwtTokenLifeTime(jwtTokenLifeTime);
1036 * @param jwtTokenLifeTime The JWT token lifetime.
1038 public void setJwtTokenLifeTime(Long jwtTokenLifeTime) { argument
1039 if (jwtTokenLifeTime != null) {
1040 put(OAuth2Constants.ShortClientAttributeNames.JWT_TOKEN_LIFE_TIME.getType(), jwtTokenLifeTime);
346 Client(String clientID, String clientType, List<String> redirectionURIs, List<String> allowedGrantScopes, List<String> defaultGrantScopes, List<String> displayName, List<String> displayDescription, List<String> clientName, String subjectType, String idTokenSignedResponseAlgorithm, List<String> postLogoutRedirectionURIs, String accessToken, String clientSessionURI, String applicationType, String clientSecret, List<String> responseTypes, List<String> contacts, Long defaultMaxAge, Boolean defaultMaxAgeEnabled, String tokenEndpointAuthMethod, String jwks, String jwksUri, String x509, String selector, String sectorIdUri, Long authorizationCodeLifeTime, Long accessTokenLifeTime, Long refreshTokenLifeTime, Long jwtTokenLifeTime) argument

Completed in 33 milliseconds