Server Locators

Identifier:
org.eclipse.wst.server.core.serverLocators

Since:
1.0

Description:
This extension point is used to locate new servers on the local or remote machines.

Configuration Markup:

<!ELEMENT extension (serverLocator+)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT serverLocator EMPTY>

<!ATTLIST serverLocator

id                  CDATA #REQUIRED

class               CDATA #REQUIRED

supportsRemoteHosts CDATA #REQUIRED

typeIds             CDATA #REQUIRED>


Examples:
The following is an example of a server locator extension point:

   <extension 
         point="org.eclipse.wst.server.core.serverLocators">
      <serverLocator
            id="com.example.locator"
            name="%serverLocatorName"
            description="%serverLocatorDescription"
            class="com.example.ExampleServerLocator"/>
   </extension>


Copyright (c) 2000, 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 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-2.0/