-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Creating an OpenIDConnectApplication using private_key_jwt and JWKS (#…
…568) New Method added OIdCApplicationBuilder.setJwks()
- Loading branch information
1 parent
7a8bf76
commit f3163c6
Showing
7 changed files
with
206 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 61 additions & 0 deletions
61
api/src/main/java/com/okta/sdk/resource/application/OIDCApplicationBuilder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* | ||
* Copyright 2020-Present Okta, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package com.okta.sdk.resource.application; | ||
|
||
import com.okta.commons.lang.Classes; | ||
|
||
import java.util.List; | ||
|
||
public interface OIDCApplicationBuilder extends ApplicationBuilder<OIDCApplicationBuilder> { | ||
|
||
static OIDCApplicationBuilder instance() { | ||
return Classes.newInstance("com.okta.sdk.impl.resource.DefaultOIDCApplicationBuilder"); | ||
} | ||
|
||
OIDCApplicationBuilder setApplicationType(OpenIdConnectApplicationType applicationType); | ||
|
||
OIDCApplicationBuilder setClientUri(String clientUri); | ||
|
||
OIDCApplicationBuilder setConsentMethod(OpenIdConnectApplicationConsentMethod consentMethod); | ||
|
||
OIDCApplicationBuilder setGrantTypes(List<OAuthGrantType> grantTypes); | ||
|
||
OIDCApplicationBuilder addGrantTypes(OAuthGrantType grantType); | ||
|
||
OIDCApplicationBuilder setLogoUri(String logoUri); | ||
|
||
OIDCApplicationBuilder setPolicyUri(String policyUri); | ||
|
||
OIDCApplicationBuilder setRedirectUris(List<String> redirectUris); | ||
|
||
OIDCApplicationBuilder addRedirectUris(String redirectUri); | ||
|
||
OIDCApplicationBuilder setResponseTypes(List<OAuthResponseType> responseTypes); | ||
|
||
OIDCApplicationBuilder addResponseTypes(OAuthResponseType responseType); | ||
|
||
OIDCApplicationBuilder setTosUri(String tosUri); | ||
|
||
OIDCApplicationBuilder setClientId(String clientId); | ||
|
||
OIDCApplicationBuilder setClientSecret(String clientSecret); | ||
|
||
OIDCApplicationBuilder setAutoKeyRotation(Boolean autoKeyRotation); | ||
|
||
OIDCApplicationBuilder setTokenEndpointAuthMethod(OAuthEndpointAuthenticationMethod tokenEndpointAuthMethod); | ||
|
||
OIDCApplicationBuilder setJwks(List<JsonWebKey> jsonWebKeyList); | ||
} |
61 changes: 0 additions & 61 deletions
61
api/src/main/java/com/okta/sdk/resource/application/OIdCApplicationBuilder.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.