[java-identity-provider COMMIT] /trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ValidateUsernamePas...

noreply at shibboleth.net noreply at shibboleth.net
Mon Feb 22 15:06:53 EST 2016


Author: scantor
Date: Mon Feb 22 15:06:53 2016
New Revision: 8101

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=8101&view=rev
Log:
IDP-925 - Dynamic determination of JAAS configuration and custom Principals

https://issues.shibboleth.net/jira/browse/IDP-925

Avoid problems with calling null configuration setters.

Modified:
    trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ValidateUsernamePasswordAgainstJAAS.java

Modified: trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ValidateUsernamePasswordAgainstJAAS.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ValidateUsernamePasswordAgainstJAAS.java?rev=8101&r1=8100&r2=8101&view=diff
==============================================================================
--- trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ValidateUsernamePasswordAgainstJAAS.java	(original)
+++ trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ValidateUsernamePasswordAgainstJAAS.java	Mon Feb 22 15:06:53 2016
@@ -165,8 +165,6 @@
                     }
                 }
             }
-        } else {
-            loginConfigurations = Collections.emptyList();
         }
     }
 
@@ -186,8 +184,6 @@
                     loginConfigurations.add(new Pair<String,Subject>(trimmed,null));
                 }
             }
-        } else {
-            loginConfigurations = Collections.emptyList();
         }
     }
     



More information about the commits mailing list