Interface ContactServiceAsync
- 
public interface ContactServiceAsync 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(long[] ids, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback)voidload(long id, com.google.gwt.user.client.rpc.AsyncCallback<GUIContact> callback)voidparseContacts(boolean preview, String separator, String delimiter, boolean skipFirstRow, int firstName, int lastName, int email, int company, int phone, int mobile, int address, com.google.gwt.user.client.rpc.AsyncCallback<GUIContact[]> callback)voidsave(GUIContact contact, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback) 
 - 
 
- 
- 
Method Detail
- 
delete
void delete(long[] ids, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback) 
- 
load
void load(long id, com.google.gwt.user.client.rpc.AsyncCallback<GUIContact> callback) 
- 
save
void save(GUIContact contact, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback)
 
- 
parseContacts
void parseContacts(boolean preview, String separator, String delimiter, boolean skipFirstRow, int firstName, int lastName, int email, int company, int phone, int mobile, int address, com.google.gwt.user.client.rpc.AsyncCallback<GUIContact[]> callback) 
 - 
 
 -