-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Broker validation and improve broker configuration editing
- Loading branch information
assimbly
committed
Jan 18, 2020
1 parent
9f87c78
commit e4b5bcc
Showing
15 changed files
with
1,736 additions
and
187 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,64 +1,24 @@ | ||
<?xml version='1.0'?> | ||
<?xml version="1.0"?> | ||
<!-- Example broker.xml --> | ||
|
||
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:activemq" xsi:schemaLocation="urn:activemq /schema/artemis-server.xsd"> | ||
<core xmlns="urn:activemq:core"> | ||
|
||
<persistence-enabled>true</persistence-enabled> | ||
|
||
<cluster-user>test</cluster-user> | ||
<cluster-password>test01</cluster-password> | ||
|
||
<acceptors> | ||
<acceptor name="in-vm">vm://0</acceptor> | ||
<acceptor name="tcp">tcp://127.0.0.1:61617</acceptor> | ||
</acceptors> | ||
|
||
<security-settings> | ||
<security-setting match="#"> | ||
<permission type="createAddress" roles="user"/> | ||
<permission type="createDurableQueue" roles="user"/> | ||
<permission type="deleteDurableQueue" roles="user"/> | ||
<permission type="createNonDurableQueue" roles="user"/> | ||
<permission type="deleteNonDurableQueue" roles="user"/> | ||
<permission type="consume" roles="user"/> | ||
<permission type="send" roles="user"/> | ||
</security-setting> | ||
</security-settings> | ||
|
||
<address-settings> | ||
<address-setting match="jms.#"> | ||
<redistribution-delay>0</redistribution-delay> | ||
</address-setting> | ||
</address-settings> | ||
|
||
<addresses> | ||
<address name="testInbox"> | ||
<anycast> | ||
<queue name="testInbox"/> | ||
</anycast> | ||
</address> | ||
<address name="CasInbox"> | ||
<anycast> | ||
<queue name="CasInbox"/> | ||
</anycast> | ||
</address> | ||
<address name="ForceCMInbox"> | ||
<anycast> | ||
<queue name="ForceCMInbox"/> | ||
</anycast> | ||
</address> | ||
<address name="IrisInbox"> | ||
<anycast> | ||
<queue name="IrisInbox"/> | ||
</anycast> | ||
</address> | ||
<address name="MessageProcessorInbox"> | ||
<anycast> | ||
<queue name="MessageProcessorInbox"/> | ||
</anycast> | ||
</address> | ||
</addresses> | ||
|
||
</core> | ||
<core xmlns="urn:activemq:core"> | ||
<persistence-enabled>false</persistence-enabled> | ||
<cluster-user>myUsername2</cluster-user> | ||
<cluster-password>myPassword2</cluster-password> | ||
<acceptors> | ||
<acceptor name="in-vm">vm://0</acceptor> | ||
<acceptor name="tcp">tcp://127.0.0.1:61616</acceptor> | ||
</acceptors> | ||
<security-settings> | ||
<security-setting match="#"> | ||
<permission type="createAddress" roles="user"/> | ||
<permission type="createDurableQueue" roles="user"/> | ||
<permission type="deleteDurableQueue" roles="user"/> | ||
<permission type="createNonDurableQueue" roles="user"/> | ||
<permission type="deleteNonDurableQueue" roles="user"/> | ||
<permission type="consume" roles="user"/> | ||
<permission type="send" roles="user"/> | ||
</security-setting> | ||
</security-settings> | ||
</core> | ||
</configuration> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.