aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/traccar/helper
diff options
context:
space:
mode:
authorAnton Tananaev <anton@traccar.org>2022-07-18 20:47:11 -0700
committerAnton Tananaev <anton@traccar.org>2022-07-18 20:47:11 -0700
commitc4509720c5dab9d7ba17dd6e89f0d846052b0c39 (patch)
tree73a14316d484ac6ed5137f44f1532350cee5382f /src/main/java/org/traccar/helper
parenta61e08cb47b8294bf639ebdc0916ead031e92827 (diff)
downloadtrackermap-server-c4509720c5dab9d7ba17dd6e89f0d846052b0c39.tar.gz
trackermap-server-c4509720c5dab9d7ba17dd6e89f0d846052b0c39.tar.bz2
trackermap-server-c4509720c5dab9d7ba17dd6e89f0d846052b0c39.zip
Reset start on restart
Diffstat (limited to 'src/main/java/org/traccar/helper')
-rw-r--r--src/main/java/org/traccar/helper/model/DeviceUtil.java33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/main/java/org/traccar/helper/model/DeviceUtil.java b/src/main/java/org/traccar/helper/model/DeviceUtil.java
new file mode 100644
index 000000000..597078caf
--- /dev/null
+++ b/src/main/java/org/traccar/helper/model/DeviceUtil.java
@@ -0,0 +1,33 @@
+/*
+ * Copyright 2022 Anton Tananaev (anton@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.helper.model;
+
+import org.traccar.model.Device;
+import org.traccar.storage.Storage;
+import org.traccar.storage.StorageException;
+import org.traccar.storage.query.Columns;
+import org.traccar.storage.query.Request;
+
+public final class DeviceUtil {
+
+ private DeviceUtil() {
+ }
+
+ public static void resetStatus(Storage storage) throws StorageException {
+ storage.updateObject(new Device(), new Request(new Columns.Include("status")));
+ }
+
+}