2 Replies Latest reply on Mar 5, 2010 9:27 AM by aemcat

    where are jboss <mbean> contents defined?

    aemcat

      Can anyone point me to documentation specifying all the jboss mbean, and what the valid 'depends' and 'attributes' are?

      I've been looking but can't find anything.

       

      For example, what else could be in the TopicService mbean besides the below?

      What are all the possible attributes? Are there other depends attributes?

       

      I.E. If I didn't already have a sample for this or other mbeans, or was wondering if anything is missing, how could I know how to construct the mbean?

       

      <

       

      mbean code="org.jboss.jms.server.destination.TopicService"

       

                name="jboss.messaging.destination:service=Topic,name=MyTopic"

       

                xmbean-dd="xmdesc/Topic-xmbean.xml">

       

                <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>

       

                <depends>jboss.messaging:service=PostOffice</depends>

       

                <attribute name="SecurityConfig">

       

                     <security>

       

                          <role name="guest" read="true" write="true"/>

       

                          <role name="publisher" read="true" write="true" create="false"/>

       

                          <role name="durpublisher" read="true" write="true" create="true"/>

       

                     </security>

       

                </attribute>

       

      </mbean>

       

      Thank you!