[java-identity-provider COMMIT] in /trunk/idp-saml-impl/src: main/java/net/shibboleth/idp/saml/impl/profile/BaseIdPIn...

noreply at shibboleth.net noreply at shibboleth.net
Wed Dec 18 17:21:27 EST 2013


Author: scantor
Date: Wed Dec 18 17:21:26 2013
New Revision: 5054

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=5054&view=rev
Log:
Cleanup work on IdP initiated SSO decoder classes.

Added:
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/BaseIdPInitiatedSSORequestMessageDecoder.java
      - copied, changed from r5053, trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/BaseIdpInitiatedSsoRequestMessageDecoder.java
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/IdPInitatedSSORequest.java
      - copied, changed from r5053, trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/IdpInitatedSsoRequest.java
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/saml1/IdPInitiatedSSORequestMessageDecoder.java
      - copied, changed from r5053, trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/saml1/IdpInitiatedSsoRequestMessageDecoder.java
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/saml2/IdPInitiatedSSORequestMessageDecoder.java
      - copied, changed from r5053, trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/saml2/IdpInitiatedSsoRequestMessageDecoder.java
    trunk/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/impl/profile/saml1/IdPInitiatedSSORequestMessageDecoderTest.java
      - copied, changed from r5053, trunk/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/impl/profile/saml1/IdpInitiatedSsoRequestMessageDecoderTest.java
    trunk/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/impl/profile/saml2/IdPInitiatedSSORequestMessageDecoderTest.java
      - copied, changed from r5053, trunk/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/impl/profile/saml2/IdpInitiatedSsoRequestMessageDecoderTest.java
Modified:
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/BaseIdpInitiatedSsoRequestMessageDecoder.java
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/IdpInitatedSsoRequest.java
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/saml1/IdpInitiatedSsoRequestMessageDecoder.java
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/saml2/IdpInitiatedSsoRequestMessageDecoder.java
    trunk/idp-saml-impl/src/main/resources/flows/Shibboleth/SSO/saml1-flow-beans.xml
    trunk/idp-saml-impl/src/main/resources/flows/Shibboleth/SSO/saml1-flow.xml
    trunk/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/impl/profile/saml1/IdpInitiatedSsoRequestMessageDecoderTest.java
    trunk/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/impl/profile/saml2/IdpInitiatedSsoRequestMessageDecoderTest.java
    trunk/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/impl/saml1/ExampleFlowTest.java

Copied: trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/BaseIdPInitiatedSSORequestMessageDecoder.java (from r5053, trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/BaseIdpInitiatedSsoRequestMessageDecoder.java)
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/BaseIdPInitiatedSSORequestMessageDecoder.java?p2=trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/BaseIdPInitiatedSSORequestMessageDecoder.java&p1=trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/BaseIdpInitiatedSsoRequestMessageDecoder.java&r1=5053&r2=5054&rev=5054&view=diff
==============================================================================
--- trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/BaseIdpInitiatedSsoRequestMessageDecoder.java (original)
+++ trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/BaseIdPInitiatedSSORequestMessageDecoder.java Wed Dec 18 17:21:26 2013
@@ -17,9 +17,12 @@
 
 package net.shibboleth.idp.saml.impl.profile;
 
+import javax.annotation.Nonnull;
+import javax.annotation.Nullable;
 import javax.annotation.concurrent.NotThreadSafe;
 import javax.servlet.http.HttpServletRequest;
 
+import net.shibboleth.utilities.java.support.annotation.constraint.NotEmpty;
 import net.shibboleth.utilities.java.support.primitive.StringSupport;
 import net.shibboleth.utilities.java.support.security.IdentifierGenerationStrategy;
 import net.shibboleth.utilities.java.support.security.Type4UuidIdentifierGenerationStrategy;
@@ -35,53 +38,36 @@
  * @param <RequestType> type of decoded message
  */
 @NotThreadSafe
-public abstract class BaseIdpInitiatedSsoRequestMessageDecoder<RequestType> extends
+public abstract class BaseIdPInitiatedSSORequestMessageDecoder<RequestType> extends
         AbstractHttpServletRequestMessageDecoder<RequestType> {
-    
-    /**
-     * Deprecated name of the query parameter carrying the service provider entity ID: {@value} . Use of
-     * {@link #ENTITY_ID_PARAM} is preferred.
-     */
-    public static final String PROVIDER_ID_PARAM = "providerId";
 

[... 908 lines stripped ...]


More information about the commits mailing list