aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/model/AttributeAlias.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2016-09-22 17:51:23 +1200
committerGitHub <noreply@github.com>2016-09-22 17:51:23 +1200
commit05cb432d786e3e4248b54dc47d457ebf9e33ba62 (patch)
tree2534c50504dc2282417b5d14567155977d0c32fb /src/org/traccar/model/AttributeAlias.java
parent55ee0b56cd1f668711b9ffc82e7d90961435b42f (diff)
parentc8816bdd85d62fb767795b2dc4d31326fdad9cd5 (diff)
downloadtrackermap-server-05cb432d786e3e4248b54dc47d457ebf9e33ba62.tar.gz
trackermap-server-05cb432d786e3e4248b54dc47d457ebf9e33ba62.tar.bz2
trackermap-server-05cb432d786e3e4248b54dc47d457ebf9e33ba62.zip
Merge pull request #2354 from Abyss777/device_attribute_aliases
Add attributes aliases
Diffstat (limited to 'src/org/traccar/model/AttributeAlias.java')
-rw-r--r--src/org/traccar/model/AttributeAlias.java61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/org/traccar/model/AttributeAlias.java b/src/org/traccar/model/AttributeAlias.java
new file mode 100644
index 000000000..023925ac3
--- /dev/null
+++ b/src/org/traccar/model/AttributeAlias.java
@@ -0,0 +1,61 @@
+/*
+ * Copyright 2016 Anton Tananaev (anton.tananaev@gmail.com)
+ * Copyright 2016 Andrey Kunitsyn (abyss@fox5.ru)
+ *
+ * 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.model;
+
+public class AttributeAlias {
+
+ private long id;
+
+ public long getId() {
+ return id;
+ }
+
+ public void setId(long id) {
+ this.id = id;
+ }
+
+ private long deviceId;
+
+ public long getDeviceId() {
+ return deviceId;
+ }
+
+ public void setDeviceId(long deviceId) {
+ this.deviceId = deviceId;
+ }
+
+ private String attribute;
+
+ public String getAttribute() {
+ return attribute;
+ }
+
+ public void setAttribute(String attribute) {
+ this.attribute = attribute;
+ }
+
+ private String alias;
+
+ public String getAlias() {
+ return alias;
+ }
+
+ public void setAlias(String alias) {
+ this.alias = alias;
+ }
+
+}