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 2012/08/28 18:53:29 UTC

svn commit: r1378224 - in /cxf/branches/2.6.x-fixes: ./ rt/rs/security/oauth-parent/oauth/src/main/java/org/apache/cxf/rs/security/oauth/services/OOBResponseProvider.java

Author: sergeyb
Date: Tue Aug 28 16:53:28 2012
New Revision: 1378224

URL: http://svn.apache.org/viewvc?rev=1378224&view=rev
Log:
Merged revisions 1378220 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/trunk

........
  r1378220 | sergeyb | 2012-08-28 17:51:26 +0100 (Tue, 28 Aug 2012) | 1 line
  
  Minor update to the OOB provider
........

Modified:
    cxf/branches/2.6.x-fixes/   (props changed)
    cxf/branches/2.6.x-fixes/rt/rs/security/oauth-parent/oauth/src/main/java/org/apache/cxf/rs/security/oauth/services/OOBResponseProvider.java

Propchange: cxf/branches/2.6.x-fixes/
------------------------------------------------------------------------------
  Merged /cxf/trunk:r1378220

Propchange: cxf/branches/2.6.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: cxf/branches/2.6.x-fixes/rt/rs/security/oauth-parent/oauth/src/main/java/org/apache/cxf/rs/security/oauth/services/OOBResponseProvider.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.6.x-fixes/rt/rs/security/oauth-parent/oauth/src/main/java/org/apache/cxf/rs/security/oauth/services/OOBResponseProvider.java?rev=1378224&r1=1378223&r2=1378224&view=diff
==============================================================================
--- cxf/branches/2.6.x-fixes/rt/rs/security/oauth-parent/oauth/src/main/java/org/apache/cxf/rs/security/oauth/services/OOBResponseProvider.java (original)
+++ cxf/branches/2.6.x-fixes/rt/rs/security/oauth-parent/oauth/src/main/java/org/apache/cxf/rs/security/oauth/services/OOBResponseProvider.java Tue Aug 28 16:53:28 2012
@@ -90,6 +90,7 @@ public class OOBResponseProvider impleme
         if (obj.getState() != null) {
             form.set(OAuthConstants.X_OAUTH_STATE, obj.getState());
         }
+        formProvider.writeTo(form, Form.class, Form.class, anns, mt, headers, os);
     }
 
 }