/** * Most of the code in the Qalingo project is copyrighted Hoteia and licensed * under the Apache License Version 2.0 (release version 0.8.0) * http://www.apache.org/licenses/LICENSE-2.0 * * Copyright (c) Hoteia, 2012-2014 * http://www.hoteia.com - http://twitter.com/hoteia - contact@hoteia.com * */ package org.hoteia.qalingo.core.web.mvc.viewbean; public class BatchViewBean extends AbstractViewBean { /** * Generated UID */ private static final long serialVersionUID = 4490237941607203923L; private String status; private String typeObject; private int processedCount; protected String engineSettingDetailsUrl; public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public String getTypeObject() { return typeObject; } public void setTypeObject(String typeObject) { this.typeObject = typeObject; } public int getProcessedCount() { return processedCount; } public void setProcessedCount(int processedCount) { this.processedCount = processedCount; } public String getEngineSettingDetailsUrl() { return engineSettingDetailsUrl; } public void setEngineSettingDetailsUrl(String engineSettingDetailsUrl) { this.engineSettingDetailsUrl = engineSettingDetailsUrl; } }