blob: f9acee7e2c5e4794c3595e32c252cd7c6972ce5d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 WSO2 Inc. 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:
* WSO2 Inc. - initial API and implementation
* yyyymmdd bug Email and other contact information
* -------- -------- -----------------------------------------------------------
* 20070110 168762 sandakith@wso2.com - Lahiru Sandakith, Initial code to introduse the Axis2
* runtime to the framework for 168762
* 20080114 209411 sandakith@wso2.com - Lahiru Sandakith, Fix for the 209411, ?wsdl not update
*******************************************************************************/
package org.eclipse.jst.ws.axis2.consumption.core.command;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.jst.ws.axis2.consumption.core.data.DataModel;
import org.eclipse.wst.common.frameworks.datamodel.AbstractDataModelOperation;
public class Axis2WebservicesServerCommand extends
AbstractDataModelOperation {
String project;
DataModel model;
public Axis2WebservicesServerCommand(DataModel model, String project){
this.model=model;
this.project = project;
}
public IStatus execute(IProgressMonitor monitor, IAdaptable info)
throws ExecutionException {
IStatus status = Status.OK_STATUS;
model.setWebProjectName(project);
return status;
}
}