/** * Copyright (C) 2011 Brian Ferris <bdferris@onebusaway.org> * * 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.onebusaway.transit_data.model.problems; import java.io.Serializable; public class PlannedTripProblemReportBean implements Serializable { private static final long serialVersionUID = 1L; private long id; private long reportTime = System.currentTimeMillis(); private String data; private String userComment; private Double userLat; private Double userLon; private Double userLocationAccuracy; private EProblemReportStatus status; private String label; public long getId() { return id; } public void setId(long id) { this.id = id; } public long getReportTime() { return reportTime; } public void setReportTime(long reportTime) { this.reportTime = reportTime; } public String getData() { return data; } public void setData(String data) { this.data = data; } public String getUserComment() { return userComment; } public void setUserComment(String userComment) { this.userComment = userComment; } public Double getUserLat() { return userLat; } public void setUserLat(Double userLat) { this.userLat = userLat; } public Double getUserLon() { return userLon; } public void setUserLon(Double userLon) { this.userLon = userLon; } public Double getUserLocationAccuracy() { return userLocationAccuracy; } public void setUserLocationAccuracy(Double userLocationAccuracy) { this.userLocationAccuracy = userLocationAccuracy; } public EProblemReportStatus getStatus() { return status; } public void setStatus(EProblemReportStatus status) { this.status = status; } public String getLabel() { return label; } public void setLabel(String label) { this.label = label; } }