[java-identity-provider COMMIT] /trunk/idp-profile-impl/src/main/java/net/shibboleth/idp/profile/impl/WebFlowProfileA...
noreply at shibboleth.net
noreply at shibboleth.net
Wed Aug 28 17:39:25 EDT 2013
Author: scantor
Date: Wed Aug 28 17:39:24 2013
New Revision: 4735
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=4735&view=rev
Log:
Adaptor needs to override the opensaml execute method.
Modified:
trunk/idp-profile-impl/src/main/java/net/shibboleth/idp/profile/impl/WebFlowProfileActionAdaptor.java
Modified: trunk/idp-profile-impl/src/main/java/net/shibboleth/idp/profile/impl/WebFlowProfileActionAdaptor.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-profile-impl/src/main/java/net/shibboleth/idp/profile/impl/WebFlowProfileActionAdaptor.java?rev=4735&r1=4734&r2=4735&view=diff
==============================================================================
--- trunk/idp-profile-impl/src/main/java/net/shibboleth/idp/profile/impl/WebFlowProfileActionAdaptor.java (original)
+++ trunk/idp-profile-impl/src/main/java/net/shibboleth/idp/profile/impl/WebFlowProfileActionAdaptor.java Wed Aug 28 17:39:24 2013
@@ -26,8 +26,6 @@
import org.opensaml.profile.ProfileException;
import org.opensaml.profile.action.ProfileAction;
import org.opensaml.profile.context.ProfileRequestContext;
-import org.springframework.webflow.execution.Event;
-import org.springframework.webflow.execution.RequestContext;
/**
@@ -69,11 +67,10 @@
}
/** {@inheritDoc} */
- @Nonnull protected Event doExecute(@Nonnull final RequestContext springRequestContext,
+ @Nonnull protected void doExecute(
@Nonnull final ProfileRequestContext<InboundMessageType, OutboundMessageType> profileRequestContext)
throws ProfileException {
action.execute(profileRequestContext);
- return getResult(action, profileRequestContext);
}
}
More information about the commits
mailing list