summaryrefslogtreecommitdiff
path: root/qpid/java/systests/etc/config-systests-acl-settings.xml
blob: c5374a5c5e311a5b623b0a671526d8f1f89c6f82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
 -
 - Licensed to the Apache Software Foundation (ASF) under one
 - or more contributor license agreements.  See the NOTICE file
 - distributed with this work for additional information
 - regarding copyright ownership.  The ASF licenses this file
 - to you under the Apache License, Version 2.0 (the
 - "License"); you may not use this file except in compliance
 - with the License.  You may obtain a copy of the License at
 -
 -   http://www.apache.org/licenses/LICENSE-2.0
 -
 - Unless required by applicable law or agreed to in writing,
 - software distributed under the License is distributed on an
 - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 - KIND, either express or implied.  See the License for the
 - specific language governing permissions and limitations
 - under the License.
 -
 -->
<broker>

    <virtualhosts>

        <virtualhost>
            <name>test</name>
            <test>
                <queues>
                    <exchange>amq.direct</exchange>
                    <!-- 4Mb -->
                    <maximumQueueDepth>4235264</maximumQueueDepth>
                    <!-- 2Mb -->
                    <maximumMessageSize>2117632</maximumMessageSize>
                    <!-- 10 mins -->
                    <maximumMessageAge>600000</maximumMessageAge>
                </queues>


                <security>
                    <access>
                        <class>org.apache.qpid.server.security.access.plugins.SimpleXML</class>
                    </access>
                    <access_control_list>
                        <!-- This section grants pubish rights to an exchange + routing key pair -->
                        <publish>
                            <exchanges>
                                <exchange>
                                    <name>amq.direct</name>
                                    <routing_keys>

                                        <!-- Allow clients to publish requests -->
                                        <routing_key>
                                            <value>example.RequestQueue</value>
                                            <users>
                                                <user>client</user>
                                            </users>
                                        </routing_key>

                                        <!-- Allow the processor to respond to a client on their Temporary Topic -->
                                        <routing_key>
                                            <value>tmp_*</value>
                                            <users>
                                                <user>server</user>
                                            </users>
                                        </routing_key>
                                        <routing_key>
                                            <value>TempQueue*</value>
                                            <users>
                                                <user>server</user>
                                            </users>
                                        </routing_key>
                                    </routing_keys>

                                </exchange>
                            </exchanges>
                        </publish>

                        <!-- This section grants users the ability to consume from the broker -->
                        <consume>
                            <queues>

                                <!-- Allow the clients to consume from their temporary queues-->
                                <queue>
                                    <temporary/>
                                    <users>
                                        <user>client</user>
                                    </users>
                                </queue>


                                <!-- Only allow the server to consume from the Request Queue-->
                                <queue>
                                    <name>example.RequestQueue</name>
                                    <users>
                                        <user>server</user>
                                    </users>
                                </queue>


                            </queues>
                        </consume>

                        <!-- This section grants clients the ability to create queues and exchanges -->
                        <create>
                            <queues>
                                <!-- Allow clients to create temporary queues-->
                                <queue>
                                    <temporary/>
                                    <exchanges>
                                        <exchange>
                                            <name>amq.direct</name>
                                            <users>
                                                <user>client</user>
                                            </users>
                                        </exchange>
                                    </exchanges>
                                </queue>
                                <!-- Allow the server to create the Request Queue-->
                                <queue>
                                    <name>example.RequestQueue</name>
                                    <users>
                                        <user>server</user>
                                    </users>
                                </queue>

                            </queues>
                        </create>


                    </access_control_list>

                </security>
            </test>
        </virtualhost>
    </virtualhosts>
</broker>