[java-identity-provider COMMIT] in /trunk/idp-saml-api/src: main/java/net/shibboleth/idp/saml/profile/saml1/SAML1Acti...

noreply at shibboleth.net noreply at shibboleth.net
Tue Feb 18 15:08:52 EST 2014


Author: tzeller
Date: Tue Feb 18 15:08:52 2014
New Revision: 5395

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=5395&view=rev
Log:
IDP-367 : Rebase action support classes on n.s.i.profile.AbstractProfileAction.

Modified:
    trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/profile/saml1/SAML1ActionSupport.java
    trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/profile/saml2/SAML2ActionSupport.java
    trunk/idp-saml-api/src/test/java/net/shibboleth/idp/saml/profile/ActionTestSupportAction.java

Modified: trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/profile/saml1/SAML1ActionSupport.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/profile/saml1/SAML1ActionSupport.java?rev=5395&r1=5394&r2=5395&view=diff
==============================================================================
--- trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/profile/saml1/SAML1ActionSupport.java (original)
+++ trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/profile/saml1/SAML1ActionSupport.java Tue Feb 18 15:08:52 2014
@@ -19,11 +19,11 @@
 
 import javax.annotation.Nonnull;
 
+import net.shibboleth.idp.profile.AbstractProfileAction;
 import net.shibboleth.idp.profile.config.SecurityConfiguration;
 import net.shibboleth.idp.relyingparty.RelyingPartyContext;
 
 import org.opensaml.core.xml.config.XMLObjectProviderRegistrySupport;
-import org.opensaml.profile.action.AbstractProfileAction;
 import org.opensaml.saml.common.SAMLObjectBuilder;
 import org.opensaml.saml.common.SAMLVersion;
 import org.opensaml.saml.saml1.core.Assertion;

Modified: trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/profile/saml2/SAML2ActionSupport.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/profile/saml2/SAML2ActionSupport.java?rev=5395&r1=5394&r2=5395&view=diff
==============================================================================
--- trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/profile/saml2/SAML2ActionSupport.java (original)
+++ trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/profile/saml2/SAML2ActionSupport.java Tue Feb 18 15:08:52 2014
@@ -19,11 +19,11 @@
 
 import javax.annotation.Nonnull;
 
+import net.shibboleth.idp.profile.AbstractProfileAction;
 import net.shibboleth.idp.profile.config.SecurityConfiguration;
 import net.shibboleth.idp.relyingparty.RelyingPartyContext;
 
 import org.opensaml.core.xml.config.XMLObjectProviderRegistrySupport;
-import org.opensaml.profile.action.AbstractProfileAction;
 import org.opensaml.saml.common.SAMLObjectBuilder;
 import org.opensaml.saml.common.SAMLVersion;
 import org.opensaml.saml.saml2.core.Assertion;

Modified: trunk/idp-saml-api/src/test/java/net/shibboleth/idp/saml/profile/ActionTestSupportAction.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-saml-api/src/test/java/net/shibboleth/idp/saml/profile/ActionTestSupportAction.java?rev=5395&r1=5394&r2=5395&view=diff
==============================================================================
--- trunk/idp-saml-api/src/test/java/net/shibboleth/idp/saml/profile/ActionTestSupportAction.java (original)
+++ trunk/idp-saml-api/src/test/java/net/shibboleth/idp/saml/profile/ActionTestSupportAction.java Tue Feb 18 15:08:52 2014
@@ -17,14 +17,13 @@
 
 package net.shibboleth.idp.saml.profile;
 
+import net.shibboleth.idp.profile.AbstractProfileAction;
 import net.shibboleth.utilities.java.support.component.ComponentInitializationException;
 
 import org.opensaml.profile.ProfileException;
-import org.opensaml.profile.action.AbstractProfileAction;
 import org.opensaml.profile.context.ProfileRequestContext;
-import org.opensaml.saml.saml1.core.Response;
 
-public class ActionTestSupportAction extends AbstractProfileAction<Object, Response> {
+public class ActionTestSupportAction extends AbstractProfileAction {
 
     public ActionTestSupportAction() throws ComponentInitializationException {
         setId("Test Component");



More information about the commits mailing list