Skip to main content
summaryrefslogtreecommitdiffstats
blob: 4c51a08204d05c11c95fbdc6df3cab0d1aa4e0eb (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
/**********************************************************************
 * Copyright (c) 2004 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Common Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v10.html
 *
 * Contributors:
 *    IBM - Initial API and implementation
 **********************************************************************/
package org.eclipse.jst.server.tomcat.core;

import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.debug.core.ILaunch;
import org.eclipse.debug.core.model.IProcess;
/**
 * 
 */
public interface ITomcatServerBehaviour {
	/**
	 * Returns the main class that is used to launch the Tomcat server.
	 * 
	 * @return
	 */
	public String getRuntimeClass();

	/**
	 * Set the process that is monitored for Tomcat startup and shutdown.
	 * Warning: Do not call this method unless you know what you're doing;
	 * it should only be used in rare cases.
	 * 
	 * @param newProcess
	 */
	public void setProcess(IProcess newProcess);
	
	/**
	 * Setup for starting the server.
	 * 
	 * @param launch ILaunch
	 * @param launchMode String
	 * @param monitor IProgressMonitor
	 */
	public void setupLaunch(ILaunch launch, String launchMode, IProgressMonitor monitor) throws CoreException;
}

Back to the top