blob: 7a17d223878db2bb3ad3f93f7159230ddd967ce0 [file] [log] [blame]
/**********************************************************************
* 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
**********************************************************************/
package org.eclipse.jst.server.j2ee;
import org.eclipse.wst.server.core.model.IModule;
/**
* A static Web module that could be deployed to Apache or another
* HTTP server.
*/
public interface IStaticWeb extends IModule {
/**
* Returns the context root of the Web.
*
* @return java.lang.String
*/
public String getContextRoot();
}