Searched defs:authorizationCodeLifeTime (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.java54 private Long authorizationCodeLifeTime; field in class:ClientBuilder
313 * @param authorizationCodeLifeTime Authorization code lifetime.
315 public ClientBuilder setAuthorizationCodeLifeTime(Long authorizationCodeLifeTime) { argument
316 this.authorizationCodeLifeTime = authorizationCodeLifeTime;
360 authorizationCodeLifeTime, accessTokenLifeTime, refreshTokenLifeTime, jwtTokenLifeTime);
H A DClient.java341 * @param authorizationCodeLifeTime The client's authorization code lifetime.
352 String jwksUri, String x509, String selector, String sectorIdUri, Long authorizationCodeLifeTime,
380 setAuthorizationCodeLifeTime(authorizationCodeLifeTime);
969 * @param authorizationCodeLifeTime The authorization code lifetime.
971 public void setAuthorizationCodeLifeTime(Long authorizationCodeLifeTime) { argument
972 if (authorizationCodeLifeTime != null) {
974 authorizationCodeLifeTime);
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.java54 private Long authorizationCodeLifeTime; field in class:ClientBuilder
313 * @param authorizationCodeLifeTime Authorization code lifetime.
315 public ClientBuilder setAuthorizationCodeLifeTime(Long authorizationCodeLifeTime) { argument
316 this.authorizationCodeLifeTime = authorizationCodeLifeTime;
360 authorizationCodeLifeTime, accessTokenLifeTime, refreshTokenLifeTime, jwtTokenLifeTime);
H A DClient.java341 * @param authorizationCodeLifeTime The client's authorization code lifetime.
352 String jwksUri, String x509, String selector, String sectorIdUri, Long authorizationCodeLifeTime,
380 setAuthorizationCodeLifeTime(authorizationCodeLifeTime);
969 * @param authorizationCodeLifeTime The authorization code lifetime.
971 public void setAuthorizationCodeLifeTime(Long authorizationCodeLifeTime) { argument
972 if (authorizationCodeLifeTime != null) {
974 authorizationCodeLifeTime);
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 1186 milliseconds