Updated Client configuration (markdown)
parent
f2d30ec83f
commit
bd2ffe133b
|
@ -45,20 +45,20 @@ There is one filter class `org.mitre.openid.connect.client.OIDCAuthenticationFil
|
||||||
```
|
```
|
||||||
<bean id="openIdConnectAuthenticationFilter" class="org.mitre.openid.connect.client.OIDCAuthenticationFilter">
|
<bean id="openIdConnectAuthenticationFilter" class="org.mitre.openid.connect.client.OIDCAuthenticationFilter">
|
||||||
<property name="authenticationManager" ref="authenticationManager" />
|
<property name="authenticationManager" ref="authenticationManager" />
|
||||||
|
<property name="issuerService">
|
||||||
|
... determines the issuer URL for the server
|
||||||
|
</property>
|
||||||
<property name="serverConfigurationService">
|
<property name="serverConfigurationService">
|
||||||
...
|
... determines the endpoint URLs and other attributes of the server
|
||||||
</property>
|
</property>
|
||||||
<property name="clientConfigurationService">
|
<property name="clientConfigurationService">
|
||||||
...
|
... determines the client identifier and credentials to use when talking to the server
|
||||||
</property>
|
|
||||||
<property name="issuerService">
|
|
||||||
...
|
|
||||||
</property>
|
</property>
|
||||||
<property name="authRequestOptionsService">
|
<property name="authRequestOptionsService">
|
||||||
...
|
... determines the extra options to add to the auth request
|
||||||
</property>
|
</property>
|
||||||
<property name="authRequestUrlBuilder">
|
<property name="authRequestUrlBuilder">
|
||||||
...
|
... builds the redirect URL to the auth request endpoint
|
||||||
</property>
|
</property>
|
||||||
</bean>
|
</bean>
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue