[java-identity-provider COMMIT] /trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/saml1/SignAss...

noreply at shibboleth.net noreply at shibboleth.net
Fri Jan 31 18:55:25 EST 2014


Author: tzeller
Date: Fri Jan 31 18:55:25 2014
New Revision: 5292

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=5292&view=rev
Log:
IDP 219 : Make SignAssertions stub action return "proceed" rather than null and add TODO.

Modified:
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/saml1/SignAssertions.java

Modified: trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/saml1/SignAssertions.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/saml1/SignAssertions.java?rev=5292&r1=5291&r2=5292&view=diff
==============================================================================
--- trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/saml1/SignAssertions.java (original)
+++ trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/saml1/SignAssertions.java Fri Jan 31 18:55:25 2014
@@ -20,9 +20,10 @@
 import javax.annotation.Nonnull;
 
 import net.shibboleth.idp.profile.AbstractProfileAction;
+import net.shibboleth.idp.profile.ActionSupport;
+
 import org.opensaml.profile.ProfileException;
 import org.opensaml.profile.context.ProfileRequestContext;
-
 import org.opensaml.saml.saml1.core.Response;
 import org.springframework.webflow.execution.Event;
 import org.springframework.webflow.execution.RequestContext;
@@ -35,8 +36,9 @@
     /** {@inheritDoc} */
     protected Event doExecute(@Nonnull final RequestContext springRequestContext,
             @Nonnull final ProfileRequestContext<Object, Response> profileRequestContext) throws ProfileException {
-        // TODO Auto-generated method stub
-        return null;
+
+        // TODO method stub
+        return ActionSupport.buildProceedEvent(this);
     }
 
 }



More information about the commits mailing list