[java-identity-provider COMMIT] in /trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl: ExtractKerberos...
noreply at shibboleth.net
noreply at shibboleth.net
Tue Jul 30 14:29:09 EDT 2013
Author: scantor
Date: Tue Jul 30 14:29:09 2013
New Revision: 4638
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=4638&view=rev
Log:
Refactor some TODO actions.
Modified:
trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ExtractKerberosTicketFromWssToken.java
trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ExtractX509CertificateFromWssToken.java
trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ValidateKerberosTicket.java
trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ValidateX509Certificate.java
Modified: trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ExtractKerberosTicketFromWssToken.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ExtractKerberosTicketFromWssToken.java?rev=4638&r1=4637&r2=4638&view=diff
==============================================================================
--- trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ExtractKerberosTicketFromWssToken.java (original)
+++ trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ExtractKerberosTicketFromWssToken.java Tue Jul 30 14:29:09 2013
@@ -19,23 +19,21 @@
import javax.annotation.Nonnull;
-import net.shibboleth.idp.profile.AbstractProfileAction;
-import org.opensaml.profile.ProfileException;
+import net.shibboleth.idp.authn.AbstractAuthenticationAction;
+import net.shibboleth.idp.authn.AuthenticationException;
+import net.shibboleth.idp.authn.context.AuthenticationContext;
+
import org.opensaml.profile.context.ProfileRequestContext;
-import org.springframework.webflow.execution.Event;
-import org.springframework.webflow.execution.RequestContext;
-
/**
- *
+ * TODO.
*/
-public class ExtractKerberosTicketFromWssToken extends AbstractProfileAction {
+public class ExtractKerberosTicketFromWssToken extends AbstractAuthenticationAction {
/** {@inheritDoc} */
- protected Event doExecute(@Nonnull final RequestContext springRequestContext,
- @Nonnull final ProfileRequestContext profileRequestContext) throws ProfileException {
- // TODO Auto-generated method stub
- return null;
+ protected void doExecute(@Nonnull final ProfileRequestContext profileRequestContext,
+ @Nonnull final AuthenticationContext authenticationContext) throws AuthenticationException {
+ throw new AuthenticationException("Not implemented.");
}
}
Modified: trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ExtractX509CertificateFromWssToken.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ExtractX509CertificateFromWssToken.java?rev=4638&r1=4637&r2=4638&view=diff
==============================================================================
--- trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ExtractX509CertificateFromWssToken.java (original)
+++ trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ExtractX509CertificateFromWssToken.java Tue Jul 30 14:29:09 2013
@@ -19,23 +19,21 @@
import javax.annotation.Nonnull;
-import net.shibboleth.idp.profile.AbstractProfileAction;
-import org.opensaml.profile.ProfileException;
+import net.shibboleth.idp.authn.AbstractAuthenticationAction;
+import net.shibboleth.idp.authn.AuthenticationException;
+import net.shibboleth.idp.authn.context.AuthenticationContext;
+
import org.opensaml.profile.context.ProfileRequestContext;
-import org.springframework.webflow.execution.Event;
-import org.springframework.webflow.execution.RequestContext;
-
/**
- *
+ * TODO.
*/
-public class ExtractX509CertificateFromWssToken extends AbstractProfileAction {
+public class ExtractX509CertificateFromWssToken extends AbstractAuthenticationAction {
/** {@inheritDoc} */
- protected Event doExecute(@Nonnull final RequestContext springRequestContext,
- final ProfileRequestContext profileRequestContext) throws ProfileException {
- // TODO Auto-generated method stub
- return null;
+ protected void doExecute(@Nonnull final ProfileRequestContext profileRequestContext,
+ @Nonnull final AuthenticationContext authenticationContext) throws AuthenticationException {
+ throw new AuthenticationException("Not implemented.");
}
}
Modified: trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ValidateKerberosTicket.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ValidateKerberosTicket.java?rev=4638&r1=4637&r2=4638&view=diff
==============================================================================
--- trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ValidateKerberosTicket.java (original)
+++ trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/ValidateKerberosTicket.java Tue Jul 30 14:29:09 2013
@@ -19,23 +19,21 @@
import javax.annotation.Nonnull;
[... 69 lines stripped ...]
More information about the commits
mailing list