package buzzerproxy; /** * @author M. Friedeboldt / Sebastian Enger */ public class ResultContainer { private String lastChecked = ""; private String resultUrl = ""; private String sizeOfUrlContent = ""; /** * @return the lastChecked */ public String getLastChecked() { return lastChecked; } /** * @param lastChecked the lastChecked to set */ public void setLastChecked(String lastChecked) { this.lastChecked = lastChecked; } /** * @return the resultUrl */ public String getResultUrl() { return resultUrl; } /** * @param resultUrl the resultUrl to set */ public void setResultUrl(String resultUrl) { this.resultUrl = resultUrl; } /** * @return the sizeOfUrlContent */ public String getSizeOfUrlContent() { return sizeOfUrlContent; } /** * @param sizeOfUrlContent the sizeOfUrlContent to set */ public void setSizeOfUrlContent(String sizeOfUrlContent) { this.sizeOfUrlContent = sizeOfUrlContent; } }