diff options
author | Abyss777 <abyss@fox5.ru> | 2018-02-09 12:11:39 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2018-02-09 12:11:39 +0500 |
commit | 267c6e1651b6e0e91dd7c3463f86de929d7bc73c (patch) | |
tree | fc142d1f296623186e55ef0cd51df4219fa8dbc1 /src/org/traccar/DeviceSession.java | |
parent | 6d7bc2fe5dfc38dbe25c488501a8f6c653928e33 (diff) | |
download | trackermap-server-267c6e1651b6e0e91dd7c3463f86de929d7bc73c.tar.gz trackermap-server-267c6e1651b6e0e91dd7c3463f86de929d7bc73c.tar.bz2 trackermap-server-267c6e1651b6e0e91dd7c3463f86de929d7bc73c.zip |
Implement unified device timezone handling
Diffstat (limited to 'src/org/traccar/DeviceSession.java')
-rw-r--r-- | src/org/traccar/DeviceSession.java | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/org/traccar/DeviceSession.java b/src/org/traccar/DeviceSession.java index 36958287d..322381807 100644 --- a/src/org/traccar/DeviceSession.java +++ b/src/org/traccar/DeviceSession.java @@ -1,5 +1,5 @@ /* - * Copyright 2016 Anton Tananaev (anton@traccar.org) + * Copyright 2016 - 2018 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. @@ -15,6 +15,8 @@ */ package org.traccar; +import java.util.TimeZone; + public class DeviceSession { private final long deviceId; @@ -27,4 +29,14 @@ public class DeviceSession { return deviceId; } + private TimeZone timeZone; + + public void setTimeZone(TimeZone timeZone) { + this.timeZone = timeZone; + } + + public TimeZone getTimeZone() { + return timeZone; + } + } |