[java-identity-provider COMMIT] in /trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/profile/config: saml1/Br...
noreply at shibboleth.net
noreply at shibboleth.net
Tue Jan 21 21:45:45 EST 2014
Author: scantor
Date: Tue Jan 21 21:45:45 2014
New Revision: 5225
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=5225&view=rev
Log:
Fix missing list initialization.
Modified:
trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/profile/config/saml1/BrowserSSOProfileConfiguration.java
trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/profile/config/saml2/BrowserSSOProfileConfiguration.java
Modified: trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/profile/config/saml1/BrowserSSOProfileConfiguration.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/profile/config/saml1/BrowserSSOProfileConfiguration.java?rev=5225&r1=5224&r2=5225&view=diff
==============================================================================
--- trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/profile/config/saml1/BrowserSSOProfileConfiguration.java (original)
+++ trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/profile/config/saml1/BrowserSSOProfileConfiguration.java Tue Jan 21 21:45:45 2014
@@ -18,6 +18,7 @@
package net.shibboleth.idp.saml.profile.config.saml1;
import java.security.Principal;
+import java.util.Collections;
import java.util.List;
import javax.annotation.Nonnull;
@@ -57,6 +58,8 @@
/** Constructor. */
public BrowserSSOProfileConfiguration() {
this(PROFILE_ID);
+
+ defaultAuthenticationMethods = Collections.emptyList();
}
/**
Modified: trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/profile/config/saml2/BrowserSSOProfileConfiguration.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/profile/config/saml2/BrowserSSOProfileConfiguration.java?rev=5225&r1=5224&r2=5225&view=diff
==============================================================================
--- trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/profile/config/saml2/BrowserSSOProfileConfiguration.java (original)
+++ trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/profile/config/saml2/BrowserSSOProfileConfiguration.java Tue Jan 21 21:45:45 2014
@@ -18,6 +18,7 @@
package net.shibboleth.idp.saml.profile.config.saml2;
import java.security.Principal;
+import java.util.Collections;
import java.util.List;
import javax.annotation.Nonnull;
@@ -79,6 +80,7 @@
skipEndpointValidationWhenSigned = false;
maximumSPSessionLifetime = 0;
allowingDelegation = false;
+ defaultAuthenticationContexts = Collections.emptyList();
}
/**
More information about the commits
mailing list