Repository: cxf Updated Branches: refs/heads/master 813321ea2 -> f33bd39ce
Updating oidc demos Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/f33bd39c Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/f33bd39c Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/f33bd39c Branch: refs/heads/master Commit: f33bd39ce1930d72dda33c158263dee2bf43ad22 Parents: 813321e Author: Sergey Beryozkin <[email protected]> Authored: Tue Dec 1 17:08:01 2015 +0000 Committer: Sergey Beryozkin <[email protected]> Committed: Tue Dec 1 17:08:01 2015 +0000 ---------------------------------------------------------------------- .../basic_oidc/src/main/webapp/WEB-INF/applicationContext.xml | 2 +- .../big_query/src/main/webapp/WEB-INF/applicationContext.xml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/f33bd39c/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 6113a9b..91f6dea 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 @@ -112,7 +112,7 @@ </jaxrsclient:features> </jaxrsclient:client> <bean id="consumer" class="org.apache.cxf.rs.security.oauth2.client.Consumer"> - <property name="key" value="${client_id}"/> + <property name="clientId" value="${client_id}"/> </bean> </beans> http://git-wip-us.apache.org/repos/asf/cxf/blob/f33bd39c/distribution/src/main/release/samples/jax_rs/big_query/src/main/webapp/WEB-INF/applicationContext.xml ---------------------------------------------------------------------- diff --git a/distribution/src/main/release/samples/jax_rs/big_query/src/main/webapp/WEB-INF/applicationContext.xml b/distribution/src/main/release/samples/jax_rs/big_query/src/main/webapp/WEB-INF/applicationContext.xml index 7171797..d8f9ef4 100644 --- a/distribution/src/main/release/samples/jax_rs/big_query/src/main/webapp/WEB-INF/applicationContext.xml +++ b/distribution/src/main/release/samples/jax_rs/big_query/src/main/webapp/WEB-INF/applicationContext.xml @@ -189,8 +189,8 @@ <!-- Client id and secret allocated in Google Developer Console --> <bean id="consumer" class="org.apache.cxf.rs.security.oauth2.client.Consumer"> - <property name="key" value="${client_id}"/> - <property name="secret" value="${client_secret}"/> + <property name="clientId" value="${client_id}"/> + <property name="clientSecret" value="${client_secret}"/> </bean> </beans>
