summaryrefslogtreecommitdiff
path: root/qpid/java/systests/etc/test-default.txt
blob: 95e733d077c18a3da82c84f955df2f09ac4b6a61 (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
#
# 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.
#

# This section grants virtualhost access rights
ACL ALLOW client ACCESS VIRTUALHOST
ACL ALLOW server ACCESS VIRTUALHOST

# This section grants publish rights to an exchange + routing key pair

# Allow clients to publish requests
ACL ALLOW client PUBLISH EXCHANGE name="amq.direct" routingKey="example.RequestQueue"

# Allow the processor to respond to a client on their Temporary Topic
ACL ALLOW server PUBLISH EXCHANGE name="amq.direct" routingKey="tmp_*"
ACL ALLOW server PUBLISH EXCHANGE name="amq.direct" routingKey="TempQueue*"

# This section grants users the ability to consume from the broker

# Allow client to consume from temporary queues
ACL ALLOW client CONSUME QUEUE temporary=true

# Only allow the server to consume from the Request Queue
ACL ALLOW server CONSUME QUEUE name="example.RequestQueue"

# Allow client and server to consume from kipper queues
ACL ALLOW client CONSUME QUEUE name="clientid:kipper"
ACL ALLOW server CONSUME QUEUE name="clientid:kipper"

# This section grants users the ability to create/delete queues and exchanges

# Allow clients to create and delete temporary and kipper queue on this exchange
ACL ALLOW client CREATE QUEUE temporary=true
ACL ALLOW client DELETE QUEUE temporary=true
ACL ALLOW client CREATE QUEUE durable="true"
ACL ALLOW client DELETE QUEUE durable="true"

# Allow the server to create the Request Queue and kipper queue
ACL ALLOW server CREATE QUEUE name="example.RequestQueue"
ACL ALLOW server CREATE QUEUE name="clientid:kipper"

## Allow client and server exchange access for the relevant queues
ACL ALLOW client BIND EXCHANGE name="amq.direct" temporary=true
ACL ALLOW client UNBIND EXCHANGE name="amq.direct" temporary=true
ACL ALLOW client BIND EXCHANGE name="amq.direct" durable=true
ACL ALLOW client UNBIND EXCHANGE name="amq.direct" durable=true
ACL ALLOW server BIND EXCHANGE name="amq.direct" queueName="example.RequestQueue"

## Allow client and server exchange access for the relevant topics
ACL ALLOW client BIND EXCHANGE name="amq.topic" durable=true routingKey=kipper
ACL ALLOW client UNBIND EXCHANGE name="amq.topic" durable=true routingKey=kipper
ACL ALLOW server BIND EXCHANGE name="amq.topic" durable=true routingKey=kipper

# Action[operation=BIND,objectType=EXCHANGE,properties={OWNER=client, DURABLE=true, QUEUE_NAME=IllegalQueue, AUTO_DELETE=false, ROUTING_KEY=IllegalQueue, NAME=amq.direct, TEMPORARY=false, EXCLUSIVE=false}]


ACL ALLOW client CREATE EXCHANGE
ACL ALLOW server CREATE EXCHANGE