Configuration of AdminObjects
Admin Objects are javabeans defined in resource adapters that can be bound into jndi.
Available from jboss-4.0.1
Example Configuration
<mbean code="org.jboss.resource.deployment.AdminObject" name="jca.test:name=testqueue"> <attribute name="JNDIName">test/testqueue</attribute> <depends optional-attribute-name="RARName">jboss.jca:service=RARDeployment,name='swiftmq.rar'</depends> <attribute name="Type">javax.jms.Queue</attribute> <attribute name="Properties"> QueueName=testqueue@router1 </attribute> </mbean>
Configurable Attributes
JNDIName
- the jndi binding of the admin objectRARName
- the ObjectName of the resource adapter deployment defining the admin objectType
- the interface class name of the admin objectProperties
- the properties used to configure the admin object
Comments