Skip to content

Commit

Permalink
Add missing fields (#493)
Browse files Browse the repository at this point in the history
Add missing fields
  • Loading branch information
sergiishamrai-okta authored Nov 25, 2020
1 parent dcbe011 commit 29dda0e
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/findbugs/findbugs-exclude.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,13 @@
</Class>
</Match>

<Match>
<Class name="com.okta.sdk.impl.resource.application.DefaultOpenIdConnectApplicationSettingsClientKeys">
<Method name="getKeys" />
<Bug pattern="BC_UNCONFIRMED_CAST_OF_RETURN_VALUE" />
</Class>
</Match>

<!-- only detected when running with Java 11, but this null check IS valid -->
<Match>
<Class name="com.okta.sdk.impl.config.YAMLPropertiesSource">
Expand Down
18 changes: 18 additions & 0 deletions src/swagger/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7160,6 +7160,7 @@ definitions:
BOOKMARK: '#/definitions/BookmarkApplication'
BROWSER_PLUGIN: '#/definitions/BrowserPluginApplication'
OPENID_CONNECT: '#/definitions/OpenIdConnectApplication'
SAML_1_1: '#/definitions/SamlApplicationV1'
SAML_2_0: '#/definitions/SamlApplication'
SECURE_PASSWORD_STORE: '#/definitions/SecurePasswordStoreApplication'
WS_FEDERATION: '#/definitions/WsFederationApplication'
Expand Down Expand Up @@ -10080,6 +10081,8 @@ definitions:
type: string
issuer_mode:
$ref: '#/definitions/OpenIdConnectApplicationIssuerMode'
jwks:
$ref: '#/definitions/OpenIdConnectApplicationSettingsClientKeys'
logo_uri:
type: string
policy_uri:
Expand All @@ -10102,6 +10105,14 @@ definitions:
type: string
x-okta-tags:
- Application
OpenIdConnectApplicationSettingsClientKeys:
properties:
keys:
items:
$ref: '#/definitions/JsonWebKey'
type: array
x-okta-tags:
- Application
OpenIdConnectApplicationSettingsRefreshToken:
properties:
leeway:
Expand Down Expand Up @@ -11217,6 +11228,13 @@ definitions:
x-okta-parent: '#/definitions/Application'
x-okta-tags:
- Application
SamlApplicationV1:
properties:
settings:
$ref: '#/definitions/SamlApplicationSettings'
x-okta-parent: '#/definitions/Application'
x-okta-tags:
- Application
SamlApplicationSettings:
properties:
signOn:
Expand Down

0 comments on commit 29dda0e

Please sign in to comment.