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

michi at wyona.com michi at wyona.com
Fri Feb 8 14:56:34 CET 2008


Author: michi
Date: 2008-02-08 14:56:34 +0100 (Fri, 08 Feb 2008)
New Revision: 31504

Modified:
   public/yanel/contributions/ajax-components/src/access-policy-editor/java/org/wyona/yanel/gwt/accesspolicyeditor/client/AsynchronousPolicyGetter.java
Log:
import fixed

Modified: public/yanel/contributions/ajax-components/src/access-policy-editor/java/org/wyona/yanel/gwt/accesspolicyeditor/client/AsynchronousPolicyGetter.java
===================================================================
--- public/yanel/contributions/ajax-components/src/access-policy-editor/java/org/wyona/yanel/gwt/accesspolicyeditor/client/AsynchronousPolicyGetter.java	2008-02-08 13:56:14 UTC (rev 31503)
+++ public/yanel/contributions/ajax-components/src/access-policy-editor/java/org/wyona/yanel/gwt/accesspolicyeditor/client/AsynchronousPolicyGetter.java	2008-02-08 13:56:34 UTC (rev 31504)
@@ -15,18 +15,27 @@
  */
 package org.wyona.yanel.gwt.accesspolicyeditor.client;
 
-//import org.wyona.yanel.gwt.client.AsynchronousAgent;
+import org.wyona.yanel.gwt.client.AsynchronousAgent;
 
+import com.google.gwt.http.client.Request;
+import com.google.gwt.http.client.Response;
+
 /**
  *
  */
-public class AsynchronousPolicyGetter {
-//public class AsynchronousPolicyGetter extends AsynchronousAgent {
+public class AsynchronousPolicyGetter extends AsynchronousAgent {
 
     /**
      *
      */
     public AsynchronousPolicyGetter(String url) {
-        //super(url);
+        super(url);
     }
+
+    /**
+     *
+     */
+    public void onResponseReceived(final Request request, final Response response) {
+        // TODO
+    }
 }



More information about the Yanel-commits mailing list