aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/traccar/protocol/NavisetProtocol.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2019-08-03 23:16:11 -0700
committerAnton Tananaev <anton.tananaev@gmail.com>2019-08-03 23:16:11 -0700
commitb5e9d84cfeb8d4e6a4e1133a2e0510652be1de6b (patch)
tree36f14a8a052163f2e1b0a770c65204ebc938eff0 /src/main/java/org/traccar/protocol/NavisetProtocol.java
parent10da32b83608a882744212373e3ff4ff2716aadf (diff)
downloadtraccar-server-b5e9d84cfeb8d4e6a4e1133a2e0510652be1de6b.tar.gz
traccar-server-b5e9d84cfeb8d4e6a4e1133a2e0510652be1de6b.tar.bz2
traccar-server-b5e9d84cfeb8d4e6a4e1133a2e0510652be1de6b.zip
Implement Naviset protocol
Diffstat (limited to 'src/main/java/org/traccar/protocol/NavisetProtocol.java')
-rw-r--r--src/main/java/org/traccar/protocol/NavisetProtocol.java34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/main/java/org/traccar/protocol/NavisetProtocol.java b/src/main/java/org/traccar/protocol/NavisetProtocol.java
new file mode 100644
index 000000000..78755ea4d
--- /dev/null
+++ b/src/main/java/org/traccar/protocol/NavisetProtocol.java
@@ -0,0 +1,34 @@
+/*
+ * Copyright 2019 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 NavisetProtocol extends BaseProtocol {
+
+ public NavisetProtocol() {
+ addServer(new TrackerServer(false, getName()) {
+ @Override
+ protected void addProtocolHandlers(PipelineBuilder pipeline) {
+ pipeline.addLast(new NavisetFrameDecoder());
+ pipeline.addLast(new NavisetProtocolDecoder(NavisetProtocol.this));
+ }
+ });
+ }
+
+}