/*
* GWTServiceAsync.java
*
* Created on December 11, 2007, 5:05 PM
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package org.yournamehere.client;
import com.google.gwt.user.client.rpc.AsyncCallback;
/**
*
* @author gw152771
*/
public interface GWTServiceAsync {
// public void getCompletionItems(String itemToMatch, AsyncCallback callback);
public void checkStrength(String password, AsyncCallback callback);
}