-
1. Re: jopr component model
ispringer Mar 24, 2010 2:20 PM (in response to starksm64)For the most part, the managed components we use can be found by looking at the plugin descriptor for the jboss-as-5 plugin:
Most resource types in the descriptor (i.e. server or service elements) map to a single ManagedComponent type, e.g. for Queues:
<service name="Queue"
createDeletePolicy="both"
subCategory="JMS Destinations"
discovery="JmsDestinationDiscoveryComponent"><plugin-configuration>
<c:simple-property name="componentType" default="JMSDestination" readOnly="true"/>
<c:simple-property name="componentSubtype" default="Queue" readOnly="true"/>...
So the Queue resource type maps to the JMSDestination:Queue ManagedComponent type. However, you'll notice there are exceptions, such as the JBoss AS Server resource type, which pull from multiple ManagedComponent types.
-
2. Re: jopr component model
starksm64 Mar 24, 2010 2:32 PM (in response to ispringer)Thanks, that is what I was looking for. I see it in the jopr-jboss-as-5-plugin-1.4.0.B01.jar/META-INF/rhq-plugin.xml of the admin-console.war/plugins directory.