/* * Copyright (C) 2010-2016 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 com.gallatinsystems.diagnostics.domain; import java.util.Date; import javax.jdo.annotations.PersistenceCapable; import com.gallatinsystems.framework.domain.BaseDomain; import com.google.appengine.api.datastore.Text; /** * Data structure for storing remote stack traces * * @author Christopher Fagiani */ @PersistenceCapable public class RemoteStacktrace extends BaseDomain { private static final long serialVersionUID = -1300539770565100348L; private String deviceIdentifier; private String phoneNumber; private Text stackTrace; private String softwareVersion; private Boolean acknowleged = new Boolean(false); private Date errorDate; private String androidId; private String ood; public String getOod() { return ood; } public void setOod(String ood) { this.ood = ood; } public Boolean getAcknowleged() { return acknowleged; } public void setAcknowleged(Boolean acknowleged) { this.acknowleged = acknowleged; } public String getSoftwareVersion() { return softwareVersion; } public void setSoftwareVersion(String softwareVersion) { this.softwareVersion = softwareVersion; } 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 Text getStackTrace() { return stackTrace; } public void setStackTrace(Text stackTrace) { this.stackTrace = stackTrace; } public Date getErrorDate() { return errorDate; } public void setErrorDate(Date errorDate) { this.errorDate = errorDate; } public String getAndroidId() { return androidId; } public void setAndroidId(String androidId) { this.androidId = androidId; } }