blob: 1582613b105bcb058a2cd71a7bb307411b4ce9cc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.ws.internal.consumption.command.common;
import org.eclipse.jst.ws.internal.consumption.datamodel.validate.ValidationManager;
import org.eclipse.wst.command.internal.provisional.env.core.SimpleCommand;
import org.eclipse.wst.command.internal.provisional.env.core.common.Environment;
import org.eclipse.wst.command.internal.provisional.env.core.common.MessageUtils;
import org.eclipse.wst.command.internal.provisional.env.core.common.SimpleStatus;
import org.eclipse.wst.command.internal.provisional.env.core.common.Status;
public class RestoreBuildStateCommand extends SimpleCommand
{
private MessageUtils msgUtils_;
private ValidationManager manager_;
private String LABEL = "TASK_LABEL_WEBSERVICE_RESTORE_BUILD";
private String DESCRIPTION = "TASK_DESC_WEBSERVICE_RESTORE_BUILD";
/**
* Default CTOR;
*/
public RestoreBuildStateCommand()
{
String pluginId = "org.eclipse.jst.ws.consumption";
msgUtils_ = new MessageUtils(pluginId + ".plugin", this);
setName(msgUtils_.getMessage(LABEL));
setDescription(msgUtils_.getMessage(DESCRIPTION));
}
/**
* Execute the command
*/
public Status execute(Environment env)
{
env.getProgressMonitor().report(msgUtils_.getMessage("TASK_DESC_WEBSERVICE_RESTORE_BUILD"));
manager_.restoreAutoBuild();
return new SimpleStatus("");
}
/**
* @param manager_ The manager_ to set.
*/
public void setValidationManager(ValidationManager manager) {
this.manager_ = manager;
}
}