/* * Copyright (C) 2010-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.gwt.client.diagnostics; import java.util.Date; import com.gallatinsystems.framework.gwt.dto.client.BaseDto; /** * dto for use with the remote exception service * * @author Christopher Fagiani */ public class RemoteStacktraceDto extends BaseDto { private static final long serialVersionUID = 8104104669231012653L; private String deviceIdentifier; private String phoneNumber; private String stackTrace; private String softwareVersion; private Boolean acknowleged; private Date errorDate; public String getDeviceIdentifier() { return deviceIdentifier; } public void setDeviceIdentifier(String deviceIdentifier) { this.deviceIdentifier = deviceIdentifier; } public String getPhoneNumber() { return phoneNumber; } public void setPhoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; } public String getStackTrace() { return stackTrace; } public void setStackTrace(String stackTrace) { this.stackTrace = stackTrace; } public String getSoftwareVersion() { return softwareVersion; } public void setSoftwareVersion(String softwareVersion) { this.softwareVersion = softwareVersion; } public Boolean getAcknowleged() { return acknowleged; } public void setAcknowleged(Boolean acknowleged) { this.acknowleged = acknowleged; } public Date getErrorDate() { return errorDate; } public void setErrorDate(Date errorDate) { this.errorDate = errorDate; } }