Interface AutomationServiceAsync
-
public interface AutomationServiceAsync
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
applyTriggersToTree(long rootId, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback)
void
deleteRoutines(long[] ids, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback)
void
deleteTriggers(long[] ids, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback)
void
execute(GUIAutomationRoutine routine, Long[] docIds, Long folderId, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback)
void
getRoutine(long id, com.google.gwt.user.client.rpc.AsyncCallback<GUIAutomationRoutine> callback)
void
getTrigger(long id, com.google.gwt.user.client.rpc.AsyncCallback<GUIAutomationTrigger> callback)
void
saveRoutine(GUIAutomationRoutine routine, com.google.gwt.user.client.rpc.AsyncCallback<GUIAutomationRoutine> callback)
void
saveTrigger(GUIAutomationTrigger trigger, com.google.gwt.user.client.rpc.AsyncCallback<GUIAutomationTrigger> callback)
-
-
-
Method Detail
-
deleteRoutines
void deleteRoutines(long[] ids, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback)
-
deleteTriggers
void deleteTriggers(long[] ids, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback)
-
saveTrigger
void saveTrigger(GUIAutomationTrigger trigger, com.google.gwt.user.client.rpc.AsyncCallback<GUIAutomationTrigger> callback)
-
getTrigger
void getTrigger(long id, com.google.gwt.user.client.rpc.AsyncCallback<GUIAutomationTrigger> callback)
-
getRoutine
void getRoutine(long id, com.google.gwt.user.client.rpc.AsyncCallback<GUIAutomationRoutine> callback)
-
saveRoutine
void saveRoutine(GUIAutomationRoutine routine, com.google.gwt.user.client.rpc.AsyncCallback<GUIAutomationRoutine> callback)
-
applyTriggersToTree
void applyTriggersToTree(long rootId, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback)
-
execute
void execute(GUIAutomationRoutine routine, Long[] docIds, Long folderId, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback)
-
-