aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/protocol/WondexProtocolEncoder.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2016-08-28 10:59:15 +1200
committerAnton Tananaev <anton.tananaev@gmail.com>2016-08-28 10:59:15 +1200
commit037e0394d41c8c0557a28059a65373edaba0d929 (patch)
treead9798f4ceb49181190a03bf676c9c0435e1db35 /src/org/traccar/protocol/WondexProtocolEncoder.java
parent7eb57d7c23e68774197ab78986c0fbd2c02f6042 (diff)
downloadtraccar-server-037e0394d41c8c0557a28059a65373edaba0d929.tar.gz
traccar-server-037e0394d41c8c0557a28059a65373edaba0d929.tar.bz2
traccar-server-037e0394d41c8c0557a28059a65373edaba0d929.zip
Allow to pass password in commands
Diffstat (limited to 'src/org/traccar/protocol/WondexProtocolEncoder.java')
-rw-r--r--src/org/traccar/protocol/WondexProtocolEncoder.java24
1 files changed, 16 insertions, 8 deletions
diff --git a/src/org/traccar/protocol/WondexProtocolEncoder.java b/src/org/traccar/protocol/WondexProtocolEncoder.java
index 568ca6aa0..918c22cda 100644
--- a/src/org/traccar/protocol/WondexProtocolEncoder.java
+++ b/src/org/traccar/protocol/WondexProtocolEncoder.java
@@ -1,21 +1,29 @@
+/*
+ * Copyright 2016 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.
+ * 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.Context;
import org.traccar.StringProtocolEncoder;
import org.traccar.helper.Log;
import org.traccar.model.Command;
-import org.traccar.model.Device;
public class WondexProtocolEncoder extends StringProtocolEncoder {
@Override
protected Object encodeCommand(Command command) {
- command.set(Command.KEY_DEVICE_PASSWORD, "0000");
- Device device = Context.getIdentityManager().getDeviceById(command.getDeviceId());
- if (device.getAttributes().containsKey(Command.KEY_DEVICE_PASSWORD)) {
- command.set(Command.KEY_DEVICE_PASSWORD, (String) device.getAttributes()
- .get(Command.KEY_DEVICE_PASSWORD));
- }
+ initDevicePassword(command, "0000");
switch (command.getType()) {
case Command.TYPE_REBOOT_DEVICE: