Installable Servers

org.eclipse.wst.server.core.installableServers

This extension point is part of an interim API that is still under development and expected to change significantly before reaching stability. It is being made available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.

This extension point is used to install new server adapters from remote update manager sites.

<!ELEMENT extension (installableServer*)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT installableServer (installableServer)>

<!ATTLIST installableServer

id             CDATA #REQUIRED

name           CDATA #REQUIRED

description    CDATA #REQUIRED

vendor         CDATA #IMPLIED

version        CDATA #IMPLIED

featureId      CDATA #REQUIRED

featureVersion CDATA #REQUIRED

featureSite    CDATA #REQUIRED>


The following is an example of an installable server extension point:
   

<extension point=

"org.eclipse.wst.server.core.installableServers"

>

<installableServer id=

"com.myserver.id"

name=

"My runtime name"

description=

"My runtime description"

vendor=

"xyz"

version=

"1.0"

featureVersion=

"1.0.0"

featureId=

"com.myfeature"

featureSite=

"xyz"

/>

</extension>