You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by cz...@apache.org on 2005/09/15 10:07:44 UTC

svn commit: r289173 - /cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/acting/SetterAction.java

Author: cziegeler
Date: Thu Sep 15 01:07:37 2005
New Revision: 289173

URL: http://svn.apache.org/viewcvs?rev=289173&view=rev
Log:
Add missing ThreadSafe

Modified:
    cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/acting/SetterAction.java

Modified: cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/acting/SetterAction.java
URL: http://svn.apache.org/viewcvs/cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/acting/SetterAction.java?rev=289173&r1=289172&r2=289173&view=diff
==============================================================================
--- cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/acting/SetterAction.java (original)
+++ cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/acting/SetterAction.java Thu Sep 15 01:07:37 2005
@@ -1,12 +1,12 @@
 /*
  * Copyright 2005 The Apache Software Foundation.
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -20,6 +20,7 @@
 import org.apache.avalon.framework.parameters.ParameterException;
 import org.apache.avalon.framework.parameters.Parameterizable;
 import org.apache.avalon.framework.parameters.Parameters;
+import org.apache.avalon.framework.thread.ThreadSafe;
 import org.apache.cocoon.environment.ObjectModelHelper;
 import org.apache.cocoon.environment.Redirector;
 import org.apache.cocoon.environment.SourceResolver;
@@ -35,7 +36,7 @@
  */
 public class SetterAction
     extends AbstractAction
-    implements Parameterizable {
+    implements Parameterizable, ThreadSafe {
 
     public static final int MODE_OBJECT_MODEL = 1;
     public static final int MODE_REQUEST_ATTR = 2;