From f87def6699827f37e7ac93fd340383f5b38416ff Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sat, 28 Sep 2013 14:03:40 +1200 Subject: Add data class --- src/org/traccar/model/Position.java | 43 ++----------------------------------- 1 file changed, 2 insertions(+), 41 deletions(-) (limited to 'src/org/traccar/model/Position.java') diff --git a/src/org/traccar/model/Position.java b/src/org/traccar/model/Position.java index 744019bc0..0ee79b744 100644 --- a/src/org/traccar/model/Position.java +++ b/src/org/traccar/model/Position.java @@ -1,5 +1,5 @@ /* - * Copyright 2012 Anton Tananaev (anton.tananaev@gmail.com) + * Copyright 2012 - 2013 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. @@ -20,33 +20,7 @@ import java.util.Date; /** * Position information */ -public class Position { - - /** - * Id - */ - private Long id; - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - /** - * Device - */ - private Long deviceId; - - public Long getDeviceId() { - return deviceId; - } - - public void setDeviceId(Long deviceId) { - this.deviceId = deviceId; - } +public class Position extends Data { /** * Time (UTC) @@ -152,17 +126,4 @@ public class Position { this.address = address; } - /** - * Extended information in XML format - */ - private String extendedInfo; - - public String getExtendedInfo() { - return extendedInfo; - } - - public void setExtendedInfo(String extendedInfo) { - this.extendedInfo = extendedInfo; - } - } -- cgit v1.2.3