blob: 216d3f23bdf96465994b3db2b88306a9c18ffa0a [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 Corporation - Initial API and implementation
**********************************************************************/
package org.eclipse.wst.server.core.model;
import java.net.URL;
/**
*
*/
public interface IURLProvider {
/**
* Return the base URL of this module on the server. This method may return
* null if this server does not have a valid configuration or does not contain
* this module. Otherwise, it should return the base URL (e.g.
* "http://localhost:8080/myProject") regardless of whether the server is
* running or not. The returned URL should not end in a trailing slash.
*
* <p>If the module is null, the returned URL will just be to the root of
* the server (e.g. "http://localhost:8080")</p>
*
* @param module com.ibm.etools.server.core.model.IModule
* @return java.net.URL
*/
public URL getModuleRootURL(IModule module);
}