/* * RHQ Management Platform * Copyright (C) 2005-2008 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, version 2, as * published by the Free Software Foundation, and/or the GNU Lesser * General Public License, version 2.1, also as published by the Free * Software Foundation. * * 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 and the GNU Lesser General Public License * for more details. * * You should have received a copy of the GNU General Public License * and the GNU Lesser 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.core.clientapi.server.configuration; import java.io.ByteArrayOutputStream; import java.io.PrintStream; import java.io.Serializable; import org.rhq.core.domain.configuration.Configuration; import org.rhq.core.domain.configuration.ConfigurationUpdateStatus; public class ConfigurationUpdateResponse implements Serializable { private static final long serialVersionUID = 1L; private int configurationUpdateId; private Configuration configuration; private ConfigurationUpdateStatus status; private String errorMessage; public ConfigurationUpdateResponse(int configurationUpdateId, Configuration configuration, ConfigurationUpdateStatus status, String errorMessage) { this.configurationUpdateId = configurationUpdateId; this.configuration = configuration; this.status = status; this.errorMessage = errorMessage; } /** * Convienence constructor that sets the status to {@link ConfigurationUpdateStatus#FAILURE} and sets the error * message to that of the throwable's stack trace. See {@link #setErrorMessageFromThrowable(Throwable)}. * * @param configurationUpdateId * @param configuration * @param t */ public ConfigurationUpdateResponse(int configurationUpdateId, Configuration configuration, Throwable t) { this.configurationUpdateId = configurationUpdateId; this.configuration = configuration; setErrorMessageFromThrowable(t); } public int getConfigurationUpdateId() { return configurationUpdateId; } public void setConfigurationUpdateId(int configurationUpdateId) { this.configurationUpdateId = configurationUpdateId; } public Configuration getConfiguration() { return configuration; } public void setConfiguration(Configuration configuration) { this.configuration = configuration; } public ConfigurationUpdateStatus getStatus() { return status; } public void setStatus(ConfigurationUpdateStatus status) { this.status = status; } public String getErrorMessage() { return errorMessage; } /** * Calling this method with a non-<code>null</code> error message implies that the request's status is * {@link ConfigurationUpdateStatus#FAILURE}. The inverse is <i>not</i> true - that is, if you set the error message * to <code>null</code>, the status is left as-is; it will not assume that a <code>null</code> error message means * the status is successful. * * @param errorMessage */ public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; if (this.errorMessage != null) { setStatus(ConfigurationUpdateStatus.FAILURE); } } /** * Convienence method that sets the error message to the given throwable's stack trace dump. If the given throwable * is <code>null</code>, the error message will be set to <code>null</code> as if passing <code>null</code> to * {@link #setErrorMessage(String)}. * * @param t throwable whose message and stack trace will make up the error message (may be <code>null</code>) */ public void setErrorMessageFromThrowable(Throwable t) { if (t != null) { ByteArrayOutputStream baos = new ByteArrayOutputStream(); t.printStackTrace(new PrintStream(baos)); setErrorMessage(baos.toString()); } else { setErrorMessage(null); } } @Override public String toString() { return getClass().getSimpleName() + "[" + "configurationUpdateId=" + configurationUpdateId + ", " + "ConfigurationUpdateStatus=" + status + ", " + "configuration=" + configuration + "]"; } /* * private int configurationUpdateId; private Configuration configuration; private ConfigurationUpdateStatus status; private String errorMessage; */ }