aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/model
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2017-08-10 16:30:37 +1200
committerGitHub <noreply@github.com>2017-08-10 16:30:37 +1200
commitb82be4f9f3b4d1d6c345bc41d5c26aca03e369cb (patch)
treed0765e885e4d3af1cc5b58011df5574c6ad82ea6 /src/org/traccar/model
parentea1b94b524c880927f85fd0c94a26bd3ec17c898 (diff)
parent34faf7e1d024596b388d1dd3a062f19adde0027c (diff)
downloadtrackermap-server-b82be4f9f3b4d1d6c345bc41d5c26aca03e369cb.tar.gz
trackermap-server-b82be4f9f3b4d1d6c345bc41d5c26aca03e369cb.tar.bz2
trackermap-server-b82be4f9f3b4d1d6c345bc41d5c26aca03e369cb.zip
Merge pull request #3426 from Abyss777/delayed_motion_events
Implement motion detection similar to trips detection
Diffstat (limited to 'src/org/traccar/model')
-rw-r--r--src/org/traccar/model/DeviceState.java41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/org/traccar/model/DeviceState.java b/src/org/traccar/model/DeviceState.java
new file mode 100644
index 000000000..3626b9953
--- /dev/null
+++ b/src/org/traccar/model/DeviceState.java
@@ -0,0 +1,41 @@
+/*
+ * Copyright 2017 Anton Tananaev (anton@traccar.org)
+ * Copyright 2017 Andrey Kunitsyn (andrey@traccar.org)
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.traccar.model;
+
+public class DeviceState {
+
+ private Boolean motionState;
+
+ public void setMotionState(boolean motionState) {
+ this.motionState = motionState;
+ }
+
+ public Boolean getMotionState() {
+ return motionState;
+ }
+
+ private Position motionPosition;
+
+ public void setMotionPosition(Position motionPosition) {
+ this.motionPosition = motionPosition;
+ }
+
+ public Position getMotionPosition() {
+ return motionPosition;
+ }
+
+}