You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2015/12/01 18:08:22 UTC

cxf git commit: Updating oidc demos

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 <sb...@gmail.com>
Authored: Tue Dec 1 17:08:01 2015 +0000
Committer: Sergey Beryozkin <sb...@gmail.com>
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>