/* * Copyright (C) 2012 Stichting Akvo (Akvo Foundation) * * This file is part of Akvo FLOW. * * Akvo FLOW is free software: you can redistribute it and modify it under the terms of * the GNU Affero General Public License (AGPL) as published by the Free Software Foundation, * either version 3 of the License or any later version. * * Akvo FLOW is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU Affero General Public License included below for more details. * * The full license text can also be seen at <http://www.gnu.org/licenses/agpl.html>. */ package org.waterforpeople.mapping.app.web.rest.dto; import java.util.Date; import com.gallatinsystems.framework.gwt.dto.client.BaseDto; public class PlacemarkDto extends BaseDto { private static final long serialVersionUID = 7506078448656852101L; private String markType = null; private Double latitude = null; private Double longitude = null; private Integer count = 0; private Integer level = 0; private Long surveyId; private Date collectionDate = null; private Long detailsId = null; public String getMarkType() { return markType; } public void setMarkType(String markType) { this.markType = markType; } public Double getLatitude() { return latitude; } public void setLatitude(Double latitude) { this.latitude = latitude; } public Double getLongitude() { return longitude; } public void setLongitude(Double longitude) { this.longitude = longitude; } public Date getCollectionDate() { return collectionDate; } public void setCollectionDate(Date collectionDate) { this.collectionDate = collectionDate; } public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } public Integer getLevel() { return level; } public void setLevel(Integer level) { this.level = level; } public Long getSurveyId() { return surveyId; } public void setSurveyId(Long surveyId) { this.surveyId = surveyId; } public Long getDetailsId() { return detailsId; } public void setDetailsId(Long detailsId) { this.detailsId = detailsId; } }