blob: e0a2b4b83190456353dc6dbeb503c17050a5b4af [file] [log] [blame]
package org.eclipse.jst.server.tomcat.core;
/**********************************************************************
* Copyright (c) 2003 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
**********************************************************************/
import java.util.List;
import org.eclipse.wst.server.core.model.IServerConfigurationDelegate;
/**
*
*/
public interface ITomcatConfiguration extends IServerConfigurationDelegate {
/**
* Returns a list of mime mappings.
* @return java.util.List
*/
public List getMimeMappings();
/**
* Returns a list of ServerPorts that this configuration uses.
*
* @return java.util.List
*/
public List getServerPorts();
/**
* Return a list of the web modules in this server.
* @return java.util.List
*/
public List getWebModules();
}