/* * RHQ Management Platform * Copyright (C) 2005-2012 Red Hat, Inc. * All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation version 2 of the License. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ package org.rhq.modules.integrationTests.restApi.d; import java.util.HashMap; import java.util.List; import java.util.Map; /** * An operationhistory item for testing * @author Heiko W. Rupp */ public class OperationHistory { String operationName; String resourceName; long lastModified; String status; String errorMessage; String jobId; Map<String,Object> result = new HashMap<String, Object>(); List<Link> links; public OperationHistory() { } public String getOperationName() { return operationName; } public void setOperationName(String operationName) { this.operationName = operationName; } public String getResourceName() { return resourceName; } public void setResourceName(String resourceName) { this.resourceName = resourceName; } public long getLastModified() { return lastModified; } public void setLastModified(long lastModified) { this.lastModified = lastModified; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public String getErrorMessage() { return errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public String getJobId() { return jobId; } public void setJobId(String jobId) { this.jobId = jobId; } public Map<String, Object> getResult() { return result; } public void setResult(Map<String, Object> result) { this.result = result; } public List<Link> getLinks() { return links; } public void setLinks(List<Link> links) { this.links = links; } }