Making the context manager property name consistent
Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/3d96a928 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/3d96a928 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/3d96a928 Branch: refs/heads/master Commit: 3d96a928c18fbc936c84bf58d6a90a5355695553 Parents: a38249e Author: Sergey Beryozkin <[email protected]> Authored: Tue Nov 24 15:15:21 2015 +0000 Committer: Sergey Beryozkin <[email protected]> Committed: Tue Nov 24 15:15:21 2015 +0000 ---------------------------------------------------------------------- .../basic_oidc/src/main/webapp/WEB-INF/applicationContext.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/3d96a928/distribution/src/main/release/samples/jax_rs/basic_oidc/src/main/webapp/WEB-INF/applicationContext.xml ---------------------------------------------------------------------- diff --git a/distribution/src/main/release/samples/jax_rs/basic_oidc/src/main/webapp/WEB-INF/applicationContext.xml b/distribution/src/main/release/samples/jax_rs/basic_oidc/src/main/webapp/WEB-INF/applicationContext.xml index 3fa9454..6113a9b 100644 --- a/distribution/src/main/release/samples/jax_rs/basic_oidc/src/main/webapp/WEB-INF/applicationContext.xml +++ b/distribution/src/main/release/samples/jax_rs/basic_oidc/src/main/webapp/WEB-INF/applicationContext.xml @@ -44,7 +44,7 @@ This state manager is shared between this filter and the RP endpoint, the RP endpoint sets an OIDC context on it and this filter checks the context is available --> - <property name="stateManager" ref="stateManager"/> + <property name="clientTokenContextManager" ref="stateManager"/> </bean> <bean id="searchView" class="org.apache.cxf.jaxrs.provider.RequestDispatcherProvider"> @@ -77,7 +77,7 @@ <!-- This state manager is shared between this RP endpoint and the oidcRpFilter which protects the application endpoint, the RP endpoint sets an OIDC context on it and the filter checks the context is available --> - <property name="stateManager" ref="stateManager"/> + <property name="clientTokenContextManager" ref="stateManager"/> </bean> <!-- The state manager shared between the RP and application endpoints --> <bean id="stateManager" class="org.apache.cxf.rs.security.oauth2.client.MemoryClientTokenContextManager"/>
