aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/traccar/protocol/FlexibleReportProtocol.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2021-05-23 17:47:47 -0700
committerAnton Tananaev <anton.tananaev@gmail.com>2021-05-23 17:47:47 -0700
commit77980d05fa389d77ddd4e52720394406d79c8e49 (patch)
tree14cd6464da55cea63b75933eca503a02e418bc3c /src/main/java/org/traccar/protocol/FlexibleReportProtocol.java
parentd5a391ccb44bb526417d33f1e11fd2540b28103b (diff)
downloadtraccar-server-77980d05fa389d77ddd4e52720394406d79c8e49.tar.gz
traccar-server-77980d05fa389d77ddd4e52720394406d79c8e49.tar.bz2
traccar-server-77980d05fa389d77ddd4e52720394406d79c8e49.zip
Add flexible report protocol
Diffstat (limited to 'src/main/java/org/traccar/protocol/FlexibleReportProtocol.java')
-rw-r--r--src/main/java/org/traccar/protocol/FlexibleReportProtocol.java33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/main/java/org/traccar/protocol/FlexibleReportProtocol.java b/src/main/java/org/traccar/protocol/FlexibleReportProtocol.java
new file mode 100644
index 000000000..0cd55343a
--- /dev/null
+++ b/src/main/java/org/traccar/protocol/FlexibleReportProtocol.java
@@ -0,0 +1,33 @@
+/*
+ * Copyright 2021 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.protocol;
+
+import org.traccar.BaseProtocol;
+import org.traccar.PipelineBuilder;
+import org.traccar.TrackerServer;
+
+public class FlexibleReportProtocol extends BaseProtocol {
+
+ public FlexibleReportProtocol() {
+ addServer(new TrackerServer(true, getName()) {
+ @Override
+ protected void addProtocolHandlers(PipelineBuilder pipeline) {
+ pipeline.addLast(new FlexibleReportProtocolDecoder(FlexibleReportProtocol.this));
+ }
+ });
+ }
+
+}