blob: e43341018418f088dc10aad2c0d074b3788a44cc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 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
*******************************************************************************/
package org.eclipse.jst.server.core.tests.impl;
import org.eclipse.jst.server.core.IWebModule;
import org.eclipse.wst.server.core.IModule;
public class TestWebModule extends TestJ2EEModule implements IWebModule {
public String getServletSpecificationVersion() {
return null;
}
public String getJSPSpecificationVersion() {
return null;
}
public String getContextRoot() {
return null;
}
public boolean isPublishRequired() {
return false;
}
public IModule[] getModules() {
return null;
}
public String getURI(IModule module) {
return null;
}
}