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/command/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/command/Duration.java')
-rw-r--r-- | src/org/traccar/command/Duration.java | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/org/traccar/command/Duration.java b/src/org/traccar/command/Duration.java new file mode 100644 index 000000000..a2ed2c991 --- /dev/null +++ b/src/org/traccar/command/Duration.java @@ -0,0 +1,38 @@ +package org.traccar.command; + +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; + } +} |