Resource Ref Type

org.eclipse.jst.j2ee.resourceRefType

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 add types to the drop down options available when creating or modifying Resource References for a Application Client or EJB Project.

<!ELEMENT extension (reference)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT reference EMPTY>

<!ATTLIST reference

type              CDATA #REQUIRED

usage             (Application Client|EJB Jar|Common)

target-server-ids CDATA #IMPLIED>


The following is an example of the extension:
   

<extension point=

"org.eclipse.jst.j2ee.ui.resourceRefType"

>

<reference usage=

"Common"

type=

"javax.jms.Queue"

/>

<reference usage=

"EJB Jar"

type=

"javax.resource.cci.ConnectionFactory"

/>

</extension>

This extension point requires that the extension be defined in the plugin file of the extending plugin.