Repository: cxf Updated Branches: refs/heads/3.1.x-fixes 9f808d2f2 -> c083d093c
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/c083d093 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/c083d093 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/c083d093 Branch: refs/heads/3.1.x-fixes Commit: c083d093ceb2c9c8fbcc5a05910b04d221225f5f Parents: ede8089 Author: Sergey Beryozkin <[email protected]> Authored: Tue Nov 24 15:15:21 2015 +0000 Committer: Sergey Beryozkin <[email protected]> Committed: Tue Nov 24 15:16:59 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/c083d093/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"/>
