diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-01-15 11:35:11 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-01-15 11:35:11 +1300 |
commit | 5868e9c00531b7defdfa90d05c1ea8dc987d6011 (patch) | |
tree | f57bb565a40fcbebe4efa6b8255964618da4b2c8 /src/org/traccar/ServerManager.java | |
parent | 5bdf64907c2935111f89844640f9ab96d119dc9d (diff) | |
download | trackermap-server-5868e9c00531b7defdfa90d05c1ea8dc987d6011.tar.gz trackermap-server-5868e9c00531b7defdfa90d05c1ea8dc987d6011.tar.bz2 trackermap-server-5868e9c00531b7defdfa90d05c1ea8dc987d6011.zip |
Implement TR900 protocol
Diffstat (limited to 'src/org/traccar/ServerManager.java')
-rw-r--r-- | src/org/traccar/ServerManager.java | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/org/traccar/ServerManager.java b/src/org/traccar/ServerManager.java index 187dd56f1..37a5256db 100644 --- a/src/org/traccar/ServerManager.java +++ b/src/org/traccar/ServerManager.java @@ -1,5 +1,5 @@ /* - * Copyright 2012 - 2014 Anton Tananaev (anton.tananaev@gmail.com) + * Copyright 2012 - 2015 Anton Tananaev (anton.tananaev@gmail.com) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -178,6 +178,7 @@ public class ServerManager { initRitiServer("riti"); initUlbotechServer("ulbotech"); initTramigoServer("tramigo"); + initTramigoServer("tr900"); // Initialize web server if (Boolean.valueOf(properties.getProperty("http.enable"))) { @@ -1232,7 +1233,7 @@ public class ServerManager { } } - /*private void initTr900Server(final String protocol) throws SQLException { + private void initTr900Server(final String protocol) throws SQLException { if (isProtocolEnabled(properties, protocol)) { serverList.add(new TrackerServer(this, new ServerBootstrap(), protocol) { @Override @@ -1244,6 +1245,6 @@ public class ServerManager { } }); } - }*/ + } } |