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

noreply at shibboleth.net noreply at shibboleth.net
Tue Jan 28 21:43:23 EST 2014


Author: scantor
Date: Tue Jan 28 21:43:23 2014
New Revision: 5267

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=5267&view=rev
Log:
Bypass use of test class to fix build.

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

Modified: trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/saml1/InitializeOutboundMessageContext.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/saml1/InitializeOutboundMessageContext.java?rev=5267&r1=5266&r2=5267&view=diff
==============================================================================
--- trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/saml1/InitializeOutboundMessageContext.java (original)
+++ trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/saml1/InitializeOutboundMessageContext.java Tue Jan 28 21:43:23 2014
@@ -23,7 +23,6 @@
 import org.opensaml.profile.ProfileException;
 import org.opensaml.profile.action.AbstractProfileAction;
 import org.opensaml.profile.action.ActionSupport;
-import org.opensaml.profile.action.ActionTestingSupport;
 import org.opensaml.profile.action.EventIds;
 import org.opensaml.profile.context.ProfileRequestContext;
 import org.opensaml.saml.common.SAMLObject;
@@ -113,7 +112,7 @@
      */
     @Nonnull private String getPeerEntityId(@Nonnull final ProfileRequestContext profileRequestContext) {
         // TODO Get peer entity id from somewhere
-        return ActionTestingSupport.INBOUND_MSG_ISSUER;
+        return "http://sp.example.org";
     }
 
     /**



More information about the commits mailing list