blob: 1cd0044a2b12c4a55413e171a13d8f4fbac02653 [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.tomcat.core.internal;
import org.eclipse.wst.server.core.model.IURLProvider;
/**
*
* @since 1.0
*/
public interface ITomcatServer extends IURLProvider {
public static final String PROPERTY_TEST_ENVIRONMENT = "testEnvironment";
/**
* Returns true if this is a test (publish and run code out of the
* workbench) environment server.
*
* @return boolean
*/
public boolean isTestEnvironment();
}