Update of /var/cvs/src/org/mmbase/security
In directory james.mmbase.org:/tmp/cvs-serv27802

Modified Files:
        Action.java 
Log Message:
javadoc


See also: http://cvs.mmbase.org/viewcvs/src/org/mmbase/security


Index: Action.java
===================================================================
RCS file: /var/cvs/src/org/mmbase/security/Action.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- Action.java 9 Jun 2008 09:52:21 -0000       1.7
+++ Action.java 27 Aug 2008 07:20:42 -0000      1.8
@@ -17,10 +17,10 @@
  * associated with MMBase nodes. Actions are e.g. provided by
  * [EMAIL PROTECTED] org.mmbase.framework.Component}s (and can be added to 
component XML's).
  *
- * Actions are checked using [EMAIL PROTECTED] Authentication#check(Action, 
Parameters)}.
+ * Actions are checked using [EMAIL PROTECTED] 
Authorization#check(UserContext, Action, Parameters)}.
  *
  * @author Michiel Meeuwissen
- * @version $Id: Action.java,v 1.7 2008/06/09 09:52:21 michiel Exp $
+ * @version $Id: Action.java,v 1.8 2008/08/27 07:20:42 michiel Exp $
  * @since MMBase-1.9
  */
 public class Action implements java.io.Serializable {
@@ -39,7 +39,7 @@
      * Every action needs to do a proposal on how to check it. The security 
implementation may
      * override this. But since components can freely define new actions, 
which may not be
      * anticipated by  the authorization implementation, the action itself 
must provide some basic
-     * checker (e.g. an instance of [EMAIL PROTECTED] ActionChecker.Rank}.
+     * checker (e.g. an instance of [EMAIL PROTECTED] ActionChecker.Rank}).
      */
     public ActionChecker getDefault() {
         return defaultChecker;
@@ -54,7 +54,7 @@
 
     /**
      * Most 'actions' have a namespace. This is normally identical to the name 
of the component
-     * with wich there are associated. It can be <code>null</code> though.
+     * with which they are associated. It can be <code>null</code> though.
      */
     public String getNameSpace() {
         return nameSpace;
@@ -69,7 +69,7 @@
     }
 
     /**
-     * @see Authentication#check(Action, Parameters)
+     * @see Authorization#check(UserContext, Action, Parameters)
      */
     public Parameters createParameters() {
         return new Parameters();
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to