[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
Mon Feb 17 22:43:20 EST 2014


Author: scantor
Date: Mon Feb 17 22:43:19 2014
New Revision: 5390

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=5390&view=rev
Log:
IDP-372 - move endpoint resolving action into IdP
- correct a misspelled class

Added:
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/IdPInitiatedSSORequest.java
      - copied, changed from r5389, 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/PopulateBindingAndEndpointContexts.java   (with props)
    trunk/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/impl/profile/PopulateBindingAndEndpointContextsTest.java   (with props)
    trunk/idp-saml-impl/src/test/resources/net/shibboleth/idp/saml/impl/profile/
    trunk/idp-saml-impl/src/test/resources/net/shibboleth/idp/saml/impl/profile/SPNoEndpoints.xml   (with props)
    trunk/idp-saml-impl/src/test/resources/net/shibboleth/idp/saml/impl/profile/SPWithEndpoints.xml   (with props)
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/InitializeAuthenticationContext.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/test/java/net/shibboleth/idp/saml/impl/profile/InitializeAuthenticationContextTest.java
    trunk/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/impl/profile/saml1/IdPInitiatedSSORequestMessageDecoderTest.java

Modified: 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?rev=5390&r1=5389&r2=5390&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 Mon Feb 17 22:43:19 2014
@@ -77,10 +77,10 @@
      * @return the new SSO request structure
      * @throws MessageDecodingException if the request doesn't contain an entityID
      */
-    @Nonnull protected IdPInitatedSSORequest buildIdPInitiatedSSORequest() throws MessageDecodingException {
+    @Nonnull protected IdPInitiatedSSORequest buildIdPInitiatedSSORequest() throws MessageDecodingException {
         final HttpServletRequest request = getHttpServletRequest();
         
-        return new IdPInitatedSSORequest(getEntityId(request), getAcsUrl(request), getTarget(request),
+        return new IdPInitiatedSSORequest(getEntityId(request), getAcsUrl(request), getTarget(request),
                 getTime(request));
     }
 

Copied: trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/IdPInitiatedSSORequest.java (from r5389, trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/IdPInitatedSSORequest.java)
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/IdPInitiatedSSORequest.java?p2=trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/IdPInitiatedSSORequest.java&p1=trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/IdPInitatedSSORequest.java&r1=5389&r2=5390&rev=5390&view=diff
==============================================================================
--- trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/IdPInitatedSSORequest.java (original)
+++ trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/IdPInitiatedSSORequest.java Mon Feb 17 22:43:19 2014
@@ -41,7 +41,7 @@
  * authentication request should be used by SAML 2 service providers wishing to initiate authentication.
  */
 @ThreadSafe
-public class IdPInitatedSSORequest {
+public class IdPInitiatedSSORequest {
     
     /** The entityID of the requesting service provider. */
     @Nonnull @NotEmpty private final String entityId;
@@ -68,7 +68,7 @@
      * @param target opaque value to be returned to the SP with the response
      * @param newTime current time at the SP, in milliseconds since the epoch, must be greater than zero
      */
-    public IdPInitatedSSORequest(@Nonnull @NotEmpty final String newEntityId, @Nullable final String url,
+    public IdPInitiatedSSORequest(@Nonnull @NotEmpty final String newEntityId, @Nullable final String url,
             @Nullable final String target, @Nullable @Positive final Long newTime) {
         

[... 281 lines stripped ...]


More information about the commits mailing list