1 package gate.cow.gwt.client;
2
3 import com.google.gwt.user.client.rpc.AsyncCallback;
4
5 public interface PageServiceAsync {
6 void checkName(String pageName, String id, String pathDir, AsyncCallback<String> async);
7 void create(String pageName, String id, String pathDir, AsyncCallback<String> async);
8 }
|