/** * $Revision$ * $Date$ * * Copyright (C) 1999-2008 Jive Software. All rights reserved. * This software is the proprietary information of Jive Software. Use is subject to license terms. */ package org.jivesoftware.openfire.update; /** * Simple data model to handle success/failure of downloads using AJAX. */ public class DownloadStatus { private int hashCode; private String url; private boolean successfull; public int getHashCode() { return hashCode; } public void setHashCode(int hashCode) { this.hashCode = hashCode; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public boolean isSuccessfull() { return successfull; } public void setSuccessfull(boolean successfull) { this.successfull = successfull; } }