blob: 816c3f0a4e3ef37cf386e03b31b0633811ecc5f0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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
* yyyymmdd bug Email and other contact information
* -------- -------- -----------------------------------------------------------
* 20071024 196997 pmoogk@ca.ibm.com - Peter Moogk, Initial coding.
*******************************************************************************/
package org.eclipse.wst.ws.service.policy.ui;
import java.util.List;
import org.eclipse.wst.ws.service.policy.IServicePolicy;
/**
*
* This interface is used in conjunction with the launchClass attribute of
* the complex element.
*
*/
public interface ILaunchOperation
{
/**
* This method is called when the user has selected this complex operation.
*
* @param selectedPolicies a list of the service policies that were selected.
*/
public void launch( List<IServicePolicy> selectedPolicies );
}