aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/web/client/model/DataServiceAsync.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2013-01-09 20:32:40 +1300
committerAnton Tananaev <anton.tananaev@gmail.com>2013-01-09 20:32:40 +1300
commitf0b99fd68cb3b6b484d50c1f9ebc0e77997fd2dd (patch)
treecd9beb89c07dbeacbb26d9df8a1a42502d206c74 /src/org/traccar/web/client/model/DataServiceAsync.java
parenta7c6a5f03c0ac94603b5238c59a275a239d16b73 (diff)
downloadetbsa-traccar-web-f0b99fd68cb3b6b484d50c1f9ebc0e77997fd2dd.tar.gz
etbsa-traccar-web-f0b99fd68cb3b6b484d50c1f9ebc0e77997fd2dd.tar.bz2
etbsa-traccar-web-f0b99fd68cb3b6b484d50c1f9ebc0e77997fd2dd.zip
Completely rewritten project
Diffstat (limited to 'src/org/traccar/web/client/model/DataServiceAsync.java')
-rw-r--r--src/org/traccar/web/client/model/DataServiceAsync.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/org/traccar/web/client/model/DataServiceAsync.java b/src/org/traccar/web/client/model/DataServiceAsync.java
new file mode 100644
index 0000000..357beb5
--- /dev/null
+++ b/src/org/traccar/web/client/model/DataServiceAsync.java
@@ -0,0 +1,31 @@
+package org.traccar.web.client.model;
+
+import java.util.Date;
+import java.util.List;
+
+import org.traccar.web.shared.model.Device;
+import org.traccar.web.shared.model.Position;
+
+import com.google.gwt.user.client.rpc.AsyncCallback;
+
+public interface DataServiceAsync {
+
+ void authenticate(String login, String password, AsyncCallback<Boolean> callback);
+
+ void authenticated(AsyncCallback<Boolean> callback);
+
+ void register(String login, String password, AsyncCallback<Boolean> callback);
+
+ void getDevices(AsyncCallback<List<Device>> callback);
+
+ void addDevice(Device device, AsyncCallback<Device> callback);
+
+ void updateDevice(Device device, AsyncCallback<Device> callback);
+
+ void removeDevice(Device device, AsyncCallback<Device> callback);
+
+ void getLatestPositions(AsyncCallback<List<Position>> callback);
+
+ void getPositions(Device device, Date from, Date to, AsyncCallback<List<Position>> callback);
+
+}