Searched defs:accessTokenLifeTime (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.java55 private Long accessTokenLifeTime; field in class:ClientBuilder
323 * @param accessTokenLifeTime Access token lifetime.
325 public ClientBuilder setAccessTokenLifeTime(Long accessTokenLifeTime) { argument
326 this.accessTokenLifeTime = accessTokenLifeTime;
360 authorizationCodeLifeTime, accessTokenLifeTime, refreshTokenLifeTime, jwtTokenLifeTime);
H A DClient.java342 * @param accessTokenLifeTime The client's access token lifetime.
353 Long accessTokenLifeTime, Long refreshTokenLifeTime, Long jwtTokenLifeTime) {
381 setAccessTokenLifeTime(accessTokenLifeTime);
992 * @param accessTokenLifeTime The access token lifetime.
994 public void setAccessTokenLifeTime(Long accessTokenLifeTime) { argument
995 if (accessTokenLifeTime != null) {
996 put(OAuth2Constants.ShortClientAttributeNames.ACCESS_TOKEN_LIFE_TIME.getType(), accessTokenLifeTime);
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.java55 private Long accessTokenLifeTime; field in class:ClientBuilder
323 * @param accessTokenLifeTime Access token lifetime.
325 public ClientBuilder setAccessTokenLifeTime(Long accessTokenLifeTime) { argument
326 this.accessTokenLifeTime = accessTokenLifeTime;
360 authorizationCodeLifeTime, accessTokenLifeTime, refreshTokenLifeTime, jwtTokenLifeTime);
H A DClient.java342 * @param accessTokenLifeTime The client's access token lifetime.
353 Long accessTokenLifeTime, Long refreshTokenLifeTime, Long jwtTokenLifeTime) {
381 setAccessTokenLifeTime(accessTokenLifeTime);
992 * @param accessTokenLifeTime The access token lifetime.
994 public void setAccessTokenLifeTime(Long accessTokenLifeTime) { argument
995 if (accessTokenLifeTime != null) {
996 put(OAuth2Constants.ShortClientAttributeNames.ACCESS_TOKEN_LIFE_TIME.getType(), accessTokenLifeTime);
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 35 milliseconds