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

noreply at shibboleth.net noreply at shibboleth.net
Mon Feb 24 20:10:09 EST 2014


Author: tzeller
Date: Mon Feb 24 20:10:08 2014
New Revision: 3647

URL: http://svn.shibboleth.net/view/java-opensaml?rev=3647&view=rev
Log:
IDP-369 : Add java-support's @Prototype annotation to OpenSAML's AbstractProfileAction.

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=3647&r1=3646&r2=3647&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 Mon Feb 24 20:10:08 2014
@@ -22,6 +22,7 @@
 import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;
 
+import net.shibboleth.utilities.java.support.annotation.Prototype;
 import net.shibboleth.utilities.java.support.component.AbstractIdentifiableInitializeableComponent;
 import net.shibboleth.utilities.java.support.component.ComponentSupport;
 
@@ -36,9 +37,12 @@
 /**
  * Base class for profile actions.
  * 
+ * This base class is annotated with {@link Prototype} to indicate that it is stateful.
+ * 
  * @param <InboundMessageType> type of in-bound message
  * @param <OutboundMessageType> type of out-bound message
  */
+ at Prototype
 public abstract class AbstractProfileAction<InboundMessageType, OutboundMessageType> extends
         AbstractIdentifiableInitializeableComponent implements ProfileAction<InboundMessageType, OutboundMessageType> {
 



More information about the commits mailing list