Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2180 asteen 1
<?xml version="1.0" encoding="UTF-8"?>
2
 
3
<!-- $Id: jbossmq-destinations-service.xml,v 1.2 2002/05/04 03:07:49 chirino Exp $ -->
4
 
5
<!-- 
6
   | This file defines the default Queues and Topics that JBossMQ
7
   | ships with.  The default Queues and Topics are used by the 
8
   | JBoss test suite and by the sample jms programs.
9
   |
10
   | You can add other destinations to this file, or you can create other
11
   | *-service.xml files to contain your application's destinations.
12
 -->
13
 
14
<server>
15
  <!-- Destination without a configured SecurityManager or without a 
16
       a SecurityConf will default to role guest with read=true, write=true,
17
       create=false.
18
  -->
19
  <mbean code="org.jboss.mq.server.jmx.Topic"
20
	 name="jboss.mq.destination:service=Topic,name=testTopic">
21
    <depends optional-attribute-name="DestinationManager">jboss.mq:service=DestinationManager</depends>
22
    <depends optional-attribute-name="SecurityManager">jboss.mq:service=SecurityManager</depends>
23
    <attribute name="SecurityConf">
24
      <security>
25
        <role name="guest" read="true" write="true"/>
26
        <role name="publisher" read="true" write="true" create="false"/>
27
        <role name="durpublisher" read="true" write="true" create="true"/>
28
      </security>
29
    </attribute>
30
  </mbean>
31
 
32
  <mbean code="org.jboss.mq.server.jmx.Topic"
33
	 name="jboss.mq.destination:service=Topic,name=securedTopic">
34
    <depends optional-attribute-name="DestinationManager">jboss.mq:service=DestinationManager</depends>
35
    <depends optional-attribute-name="SecurityManager">jboss.mq:service=SecurityManager</depends>
36
    <attribute name="SecurityConf">
37
      <security>
38
        <role name="publisher" read="true" write="true" create="false"/>
39
      </security>
40
    </attribute>
41
  </mbean>
42
 
43
  <mbean code="org.jboss.mq.server.jmx.Topic"
44
	 name="jboss.mq.destination:service=Topic,name=testDurableTopic">
45
    <depends optional-attribute-name="DestinationManager">jboss.mq:service=DestinationManager</depends>
46
    <depends optional-attribute-name="SecurityManager">jboss.mq:service=SecurityManager</depends>
47
    <attribute name="SecurityConf">
48
       <security>
49
         <role name="guest" read="true" write="true"/>
50
         <role name="publisher" read="true" write="true" create="false"/>
51
         <role name="durpublisher" read="true" write="true" create="true"/>
52
      </security>
53
    </attribute>
54
  </mbean>
55
 
56
  <mbean code="org.jboss.mq.server.jmx.Queue"
57
	 name="jboss.mq.destination:service=Queue,name=testQueue">
58
    <depends optional-attribute-name="DestinationManager">jboss.mq:service=DestinationManager</depends>
59
    <depends optional-attribute-name="SecurityManager">jboss.mq:service=SecurityManager</depends>
60
    <attribute name="SecurityConf">
61
      <security>
62
        <role name="guest" read="true" write="true"/>
63
        <role name="publisher" read="true" write="true" create="false"/>
64
        <role name="noacc" read="false" write="false" create="false"/>
65
      </security>
66
    </attribute>
67
  </mbean>
68
  <mbean code="org.jboss.mq.server.jmx.Queue"
69
	 name="jboss.mq.destination:service=Queue,name=A">
70
    <depends optional-attribute-name="DestinationManager">jboss.mq:service=DestinationManager</depends>
71
  </mbean>
72
  <mbean code="org.jboss.mq.server.jmx.Queue"
73
	 name="jboss.mq.destination:service=Queue,name=B">
74
    <depends optional-attribute-name="DestinationManager">jboss.mq:service=DestinationManager</depends>
75
  </mbean>
76
  <mbean code="org.jboss.mq.server.jmx.Queue"
77
	 name="jboss.mq.destination:service=Queue,name=C">
78
	 <depends optional-attribute-name="DestinationManager">jboss.mq:service=DestinationManager</depends>
79
  </mbean>
80
  <mbean code="org.jboss.mq.server.jmx.Queue"
81
	 name="jboss.mq.destination:service=Queue,name=D">
82
    <depends optional-attribute-name="DestinationManager">jboss.mq:service=DestinationManager</depends>
83
  </mbean>
84
  <mbean code="org.jboss.mq.server.jmx.Queue"
85
	 name="jboss.mq.destination:service=Queue,name=ex">
86
    <depends optional-attribute-name="DestinationManager">jboss.mq:service=DestinationManager</depends>
87
  </mbean>
88
 
89
</server>