Skip to main content
summaryrefslogtreecommitdiffstats
blob: 83fbf8064cfd3f7634032cc5386afa878dd4a7ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*******************************************************************************
 * Copyright (c) 2007, 2008 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
 * -------- -------- -----------------------------------------------------------
 * 20071107 203826 kathy@ca.ibm.com - Kathy Chan
 * 20071130 203826 kathy@ca.ibm.com - Kathy Chan
 * 20080326   198439 kathy@ca.ibm.com - Kathy Chan
 *******************************************************************************/

package org.eclipse.wst.ws.internal.wsrt;

import org.eclipse.core.runtime.IStatus;

/*
 * The IWebServiceRuntimeChecker interface allow the extender to have a way to check the 
 * the Web service runtime's compatibility with server type, project, project type and EAR.
 * This class can be provided as the runtimeChecker attribute in the 
 * "org.eclipse.jst.ws.consumption.ui.clientRuntimes" and
 * "org.eclipse.jst.ws.consumption.ui.serviceRuntimes" extension points.
 */

public interface IWebServiceRuntimeChecker {

	/**
	 * @param serverTypeId server type ID
	 * @param serverInstanaceId server instance ID
	 * @param projectName project name 
	 * @param projectTypeId project template ID, set to "" if the project specified by projectName already exist 
	 * @param earProjectName EAR project name
	 * @return IStatus
	 */
	public IStatus checkRuntimeCompatibility(String serverTypeId, String serverInstanceId, 
			String projectName, String projectTypeId, String earProjectName);
	
	/**
	 * @param serviceNeedEAR
	 * @param serviceEARName
	 * @param serviceProjectName
	 * @param clientNeedEAR
	 * @param clientEARName
	 * @param clientProjectName
	 * @return
	 */
	public IStatus checkServiceClientCompatibility(boolean serviceNeedEAR, String serviceEARName, String serviceProjectName, 
			boolean clientNeedEAR, String clientEARName, String clientProjectName);
	
	
}

Back to the top