blob: 974dcef9d25c4d628e800b17f6faf7b1e7f239af [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
*******************************************************************************/
package org.eclipse.jst.ws.axis2.creation.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.wst.common.frameworks.datamodel.AbstractDataModelOperation;
public class Axis2ServicesXMLValidationCommand extends
AbstractDataModelOperation {
public IStatus execute(IProgressMonitor monitor, IAdaptable info)
throws ExecutionException {
//Here write the code to validate the services.xml
IStatus status = Status.OK_STATUS;
return status;
}
}