[Yanel-commits] rev 47568 - public/yanel/contributions/ajax-components/src/access-policy-editor/java/org/wyona/security/gwt/accesspolicyeditor/client

michi at wyona.com michi at wyona.com
Fri Feb 12 11:54:30 CET 2010


Author: michi
Date: 2010-02-12 11:54:30 +0100 (Fri, 12 Feb 2010)
New Revision: 47568

Modified:
   public/yanel/contributions/ajax-components/src/access-policy-editor/java/org/wyona/security/gwt/accesspolicyeditor/client/AccessPolicyEditor.java
Log:
javadoc added

Modified: public/yanel/contributions/ajax-components/src/access-policy-editor/java/org/wyona/security/gwt/accesspolicyeditor/client/AccessPolicyEditor.java
===================================================================
--- public/yanel/contributions/ajax-components/src/access-policy-editor/java/org/wyona/security/gwt/accesspolicyeditor/client/AccessPolicyEditor.java	2010-02-12 10:16:15 UTC (rev 47567)
+++ public/yanel/contributions/ajax-components/src/access-policy-editor/java/org/wyona/security/gwt/accesspolicyeditor/client/AccessPolicyEditor.java	2010-02-12 10:54:30 UTC (rev 47568)
@@ -220,10 +220,11 @@
 
     /**
      * Get identities and rights
+     * @param url URL to request identities (users and groups) as XML
      */
     private void getIdentitiesAndRights(String url) {
         if (identitiesAllUsers == null || identitiesAllGroups == null || allRights == null) {
-            //Window.alert("Load identities: " + url);
+            //Window.alert("Load users and groups as XML: " + url);
             url = GWT.getHostPageBaseURL() + url.replaceAll("&", "&");
             //Window.alert("Load IdentitiesAndRights: "+ url);
             final AsynchronousIdentitiesAndRightsGetter ag = new AsynchronousIdentitiesAndRightsGetter(url);
@@ -268,10 +269,11 @@
 
     /**
      * Get policy
+     * @param url URL to request policy as XML
      */
     private void getPolicy(String url) {
         url = GWT.getHostPageBaseURL() + url.replaceAll("&", "&");
-        //Window.alert("Load policy: " + url);
+        //Window.alert("Load policy as XML: " + url);
         final AsynchronousPolicyGetter apg = new AsynchronousPolicyGetter(url);
         try {
             final com.google.gwt.http.client.Request request = apg.execute();



More information about the Yanel-commits mailing list