[java-opensaml COMMIT] /trunk/opensaml-profile-api/src/main/java/org/opensaml/profile/action/AbstractProfileAction.java

noreply at shibboleth.net noreply at shibboleth.net
Thu Apr 11 16:10:14 EDT 2013


Author: scantor
Date: Thu Apr 11 16:10:14 2013
New Revision: 3294

URL: http://svn.shibboleth.net/view/java-opensaml?rev=3294&view=rev
Log:
Better linkage between IdP and OpenSAML action base classes.

Modified:
    trunk/opensaml-profile-api/src/main/java/org/opensaml/profile/action/AbstractProfileAction.java

Modified: trunk/opensaml-profile-api/src/main/java/org/opensaml/profile/action/AbstractProfileAction.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-profile-api/src/main/java/org/opensaml/profile/action/AbstractProfileAction.java?rev=3294&r1=3293&r2=3294&view=diff
==============================================================================
--- trunk/opensaml-profile-api/src/main/java/org/opensaml/profile/action/AbstractProfileAction.java (original)
+++ trunk/opensaml-profile-api/src/main/java/org/opensaml/profile/action/AbstractProfileAction.java Thu Apr 11 16:10:14 2013
@@ -76,8 +76,10 @@
      * 
      * @throws ProfileException thrown if there is a problem executing the profile action
      */
-    public abstract void doExecute(
+    public void doExecute(
             @Nonnull final ProfileRequestContext<InboundMessageType, OutboundMessageType> profileRequestContext)
-            throws ProfileException;
+            throws ProfileException {
+        throw new ProfileException("This operation is not implemented.");
+    }
 
 }



More information about the commits mailing list