[java-identity-provider COMMIT] in /trunk: idp-authn-api/src/main/java/net/shibboleth/idp/authn/ExternalAuthenticatio...

noreply at shibboleth.net noreply at shibboleth.net
Sun Jun 22 16:02:49 EDT 2014


Author: scantor
Date: Sun Jun 22 16:02:49 2014
New Revision: 6149

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=6149&view=rev
Log:
Add an accessor for the PRC.

Modified:
    trunk/idp-authn-api/src/main/java/net/shibboleth/idp/authn/ExternalAuthentication.java
    trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ExternalAuthenticationImpl.java

Modified: trunk/idp-authn-api/src/main/java/net/shibboleth/idp/authn/ExternalAuthentication.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-authn-api/src/main/java/net/shibboleth/idp/authn/ExternalAuthentication.java?rev=6149&r1=6148&r2=6149&view=diff
==============================================================================
--- trunk/idp-authn-api/src/main/java/net/shibboleth/idp/authn/ExternalAuthentication.java (original)
+++ trunk/idp-authn-api/src/main/java/net/shibboleth/idp/authn/ExternalAuthentication.java Sun Jun 22 16:02:49 2014
@@ -22,6 +22,8 @@
 import javax.annotation.Nonnull;
 import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;
+
+import org.opensaml.profile.context.ProfileRequestContext;
 
 import net.shibboleth.utilities.java.support.annotation.constraint.NotEmpty;
 
@@ -145,4 +147,13 @@
         throw new ExternalAuthenticationException("Not implemented");
     }
     
+    /**
+     * Get the profile request context for the request.
+     * 
+     * @return  current profile request context
+     */
+    @Nonnull public ProfileRequestContext getProfileRequestContext() {
+        throw new UnsupportedOperationException("Not implemented");
+    }
+    
 }

Modified: trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ExternalAuthenticationImpl.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ExternalAuthenticationImpl.java?rev=6149&r1=6148&r2=6149&view=diff
==============================================================================
--- trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ExternalAuthenticationImpl.java (original)
+++ trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ExternalAuthenticationImpl.java Sun Jun 22 16:02:49 2014
@@ -76,11 +76,8 @@
                 Constraint.isNotNull(strategy, "RelyingPartyContext lookup strategy cannot be null");
     }
     
-    /**
-     * Get the profile request context for the request.
-     * 
-     * @return  current profile request context
-     */
+    /** {@inheritDoc} */
+    @Override
     @Nonnull public ProfileRequestContext getProfileRequestContext() {
         return profileRequestContext;
     }



More information about the commits mailing list