ResourceAdapterCustomization

com.ibm.adapter.framework.ResourceAdapterCustomization

1.0

This extension point schema defines the structure of elements that customize the properties of the Resource Adapter Descriptor attributes.

<!ELEMENT extension (ResourceAdapterDescriptor)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT ResourceAdapterDescriptor (ResourceAdapter? , ManagedConnectionFactory* , ConnectionSpec* , InteractionSpec* , MessageListenerDescriptor* , AdminObjectDescriptor* , ImportConfiguration*)>

<!ATTLIST ResourceAdapterDescriptor

displayName CDATA #REQUIRED

vendor      CDATA #REQUIRED

version     CDATA #REQUIRED>

ResourceAdapterDescriptor element is the root element of the customization schema for a JCA resource adapter. The elemnt includes displayName, vendor, and version attributes that uniquely identify a resource adapter that the customization is to be applied.



<!ELEMENT ResourceAdapter EMPTY>

<!ATTLIST ResourceAdapter

className                   CDATA #REQUIRED

propertyDescriptorClassName CDATA #REQUIRED>

ResourceAdapter element defines the custom view of the properties of a resource adapter's javax.resource.spi.ResourceAdapter java bean instance.



<!ELEMENT ManagedConnectionFactory EMPTY>

<!ATTLIST ManagedConnectionFactory

className                   CDATA #IMPLIED

propertyDescriptorClassName CDATA #REQUIRED>

ManagedConnectionFactory element defines the custom view of the properties of a resource adapter's javax.resource.spi.ManagedConnectionFactory instance.



<!ELEMENT ConnectionSpec EMPTY>

<!ATTLIST ConnectionSpec

className                   CDATA #REQUIRED

propertyDescriptorClassName CDATA #REQUIRED>

ConnectionSpec element defines the custom view of the properties of a resource adapter's javax.resource.cci.ConnectionSpec instance.



<!ELEMENT InteractionSpec EMPTY>

<!ATTLIST InteractionSpec

className                   CDATA #REQUIRED

propertyDescriptorClassName CDATA #REQUIRED>

InteractionSpec element defines the custom view of the properties of a resource adapter's javax.resource.cci.InteractionSpec instance.



<!ELEMENT MessageListenerDescriptor (ActivationSpec)>

<!ATTLIST MessageListenerDescriptor

messageListenerType CDATA #REQUIRED>

MessageListenerDescriptor element specifies information about the messaging capabilities of the resource adapter.



<!ELEMENT ActivationSpec EMPTY>

<!ATTLIST ActivationSpec

className                   CDATA #REQUIRED

propertyDescriptorClassName CDATA #REQUIRED>

ActivationSpec element defines the custom view of the properties of a resource adapter's javax.resource.spi.ActivationSpec java bean instance.



<!ELEMENT AdminObjectDescriptor (AdminObject)>

<!ATTLIST AdminObjectDescriptor

adminObjectType CDATA #REQUIRED>

AdminObjectDescriptor element specifies information about an administered object.



<!ELEMENT AdminObject EMPTY>

<!ATTLIST AdminObject

className                   CDATA #REQUIRED

propertyDescriptorClassName CDATA #REQUIRED>

AdminObject element defines the custom view of the properties of a resource adapter's administered object java bean instance.



<!ELEMENT ImportConfiguration EMPTY>

<!ATTLIST ImportConfiguration

importKind CDATA #REQUIRED

outputKind CDATA #REQUIRED>

ImportConfiguration element declares a pair of identifiers that are used to lookup an instance of com.ibm.adapter.framework.api.IImportConfiguration instance.




 

<extension point=

"com.ibm.adapter.framework.ResourceAdapterCustomization"

>

<ResourceAdapterDescriptor displayName=

"ECIResourceAdapter"

vendor=

"IBM"

version=

"5.0.0"

>

<ManagedConnectionFactory className=

"com.ibm.connector2.cics.ECIManagedConnectionFactory"

propertyDescriptorClassName=

"com.ibm.adapter.framework.CICSECI500Customization.MCFCustomPropertyGroup"

>

</ManagedConnectionFactory>

<ConnectionSpec className=

"com.ibm.connector2.cics.ECIConnectionSpec"

propertyDescriptorClassName=

"com.ibm.adapter.framework.CICSECI500Customization.CSCustomPropertyGroup"

>

</ConnectionSpec>

<InteractionSpec className=

"com.ibm.connector2.cics.ECIInteractionSpec"

propertyDescriptorClassName=

"com.ibm.adapter.framework.CICSECI500Customization.ISCustomPropertyGroup"

>

</InteractionSpec>

<ImportConfiguration importKind=

"com/ibm/adapter:COBOL_CAM"

outputKind=

"com/ibm/adapter:COBOL_XMI"

>

</ImportConfiguration>

</ResourceAdapterDescriptor>

</extension>