Updated Client configuration (markdown)

master
Justin Richer 2013-12-12 16:00:13 -08:00
parent f2d30ec83f
commit bd2ffe133b
1 changed files with 7 additions and 7 deletions

@ -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">
<property name="authenticationManager" ref="authenticationManager" />
<property name="issuerService">
... determines the issuer URL for the server
</property>
<property name="serverConfigurationService">
...
... determines the endpoint URLs and other attributes of the server
</property>
<property name="clientConfigurationService">
...
</property>
<property name="issuerService">
...
... determines the client identifier and credentials to use when talking to the server
</property>
<property name="authRequestOptionsService">
...
... determines the extra options to add to the auth request
</property>
<property name="authRequestUrlBuilder">
...
... builds the redirect URL to the auth request endpoint
</property>
</bean>
```