[java-identity-provider COMMIT] /trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ExtractUserAgentAdd...
noreply at shibboleth.net
noreply at shibboleth.net
Tue Jul 16 13:17:11 EDT 2013
Author: scantor
Date: Tue Jul 16 13:17:10 2013
New Revision: 4581
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=4581&view=rev
Log:
Missed a fix.
Modified:
trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ExtractUserAgentAddress.java
Modified: trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ExtractUserAgentAddress.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ExtractUserAgentAddress.java?rev=4581&r1=4580&r2=4581&view=diff
==============================================================================
--- trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ExtractUserAgentAddress.java (original)
+++ trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ExtractUserAgentAddress.java Tue Jul 16 13:17:10 2013
@@ -25,7 +25,7 @@
import net.shibboleth.idp.authn.AuthenticationException;
import net.shibboleth.idp.authn.AuthnEventIds;
import net.shibboleth.idp.authn.context.AuthenticationContext;
-import net.shibboleth.idp.authn.context.UserAgentAddressContext;
+import net.shibboleth.idp.authn.context.UserAgentContext;
import net.shibboleth.idp.profile.ActionSupport;
import net.shibboleth.utilities.java.support.logic.Constraint;
@@ -60,7 +60,7 @@
return ActionSupport.buildEvent(this, AuthnEventIds.NO_CREDENTIALS);
}
- authenticationContext.getSubcontext(UserAgentAddressContext.class, true).setUserAgentAddress(
+ authenticationContext.getSubcontext(UserAgentContext.class, true).setAddress(
InetAddresses.forString(addressString));
return ActionSupport.buildProceedEvent(this);
More information about the commits
mailing list