Subversion Repositories SmartDukaan

Rev

Rev 36737 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 36737 Rev 36758
Line 8... Line 8...
8
    private String accuracy;
8
    private String accuracy;
9
    private String timestamp;
9
    private String timestamp;
10
    private String type;
10
    private String type;
11
    private Integer batteryLevel;
11
    private Integer batteryLevel;
12
    private Integer locationToggleCount;
12
    private Integer locationToggleCount;
-
 
13
    private Double distance;
13
 
14
 
14
    public int getId() {
15
    public int getId() {
15
        return id;
16
        return id;
16
    }
17
    }
17
 
18
 
Line 81... Line 82...
81
 
82
 
82
    public void setLocationToggleCount(Integer locationToggleCount) {
83
    public void setLocationToggleCount(Integer locationToggleCount) {
83
        this.locationToggleCount = locationToggleCount;
84
        this.locationToggleCount = locationToggleCount;
84
    }
85
    }
85
 
86
 
-
 
87
    public Double getDistance() {
-
 
88
        return distance;
-
 
89
    }
-
 
90
 
-
 
91
    public void setDistance(Double distance) {
-
 
92
        this.distance = distance;
-
 
93
    }
-
 
94
 
86
    @Override
95
    @Override
87
    public String toString() {
96
    public String toString() {
88
        return "LocationTrackingPathModel{" +
97
        return "LocationTrackingPathModel{" +
89
                "id=" + id +
98
                "id=" + id +
90
                ", trackingId=" + trackingId +
99
                ", trackingId=" + trackingId +
91
                ", lat='" + lat + '\'' +
100
                ", lat='" + lat + '\'' +
92
                ", lng='" + lng + '\'' +
101
                ", lng='" + lng + '\'' +
93
                ", accuracy='" + accuracy + '\'' +
102
                ", accuracy='" + accuracy + '\'' +
94
                ", timestamp='" + timestamp + '\'' +
103
                ", timestamp='" + timestamp + '\'' +
95
                ", type='" + type + '\'' +
104
                ", type='" + type + '\'' +
-
 
105
                ", distance='" + distance + '\'' +
96
                '}';
106
                '}';
97
    }
107
    }
98
}
108
}