diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-06-30 09:41:41 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-06-30 09:41:41 +1200 |
commit | 54c54703d66e8991472c1f7476ba4acb424b27d9 (patch) | |
tree | b43f2f0225b7722a1543a973a568ee2854e7b413 /src/org/traccar/http/commands/Duration.java | |
parent | c646926a7fb0e66407c1ed7aa18daa1c9fc41cd8 (diff) | |
download | trackermap-server-54c54703d66e8991472c1f7476ba4acb424b27d9.tar.gz trackermap-server-54c54703d66e8991472c1f7476ba4acb424b27d9.tar.bz2 trackermap-server-54c54703d66e8991472c1f7476ba4acb424b27d9.zip |
Move commands related classes
Diffstat (limited to 'src/org/traccar/http/commands/Duration.java')
-rw-r--r-- | src/org/traccar/http/commands/Duration.java | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/src/org/traccar/http/commands/Duration.java b/src/org/traccar/http/commands/Duration.java deleted file mode 100644 index e50f0c23e..000000000 --- a/src/org/traccar/http/commands/Duration.java +++ /dev/null @@ -1,38 +0,0 @@ -package org.traccar.http.commands; - -public class Duration { - - public enum TimeUnit { - SECOND("s"), MINUTE("m"), HOUR("h"); - - private final String commandFormat; - - TimeUnit(String commandFormat) { - this.commandFormat = commandFormat; - } - - public String getCommandFormat() { - return commandFormat; - } - } - - - private TimeUnit unit; - private int value; - - public TimeUnit getUnit() { - return unit; - } - - public void setUnit(TimeUnit unit) { - this.unit = unit; - } - - public int getValue() { - return value; - } - - public void setValue(int value) { - this.value = value; - } -} |