http://git-wip-us.apache.org/repos/asf/qpid-site/blob/32dce6b5/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Channel-REST-API.html.in
----------------------------------------------------------------------
diff --git 
a/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Channel-REST-API.html.in
 
b/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Channel-REST-API.html.in
new file mode 100644
index 0000000..bf96c3f
--- /dev/null
+++ 
b/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Channel-REST-API.html.in
@@ -0,0 +1,266 @@
+<div class="docbook"><div class="navheader"><table summary="Navigation header" 
width="100%"><tr><th align="center" colspan="3">6.3.&#160;REST 
API</th></tr><tr><td align="left" width="20%"><a accesskey="p" 
href="Java-Broker-Management-Channel-Web-Console.html">Prev</a>&#160;</td><th 
align="center" width="60%">Chapter&#160;6.&#160;Management Channels</th><td 
align="right" width="20%">&#160;<a accesskey="n" 
href="Java-Broker-Management-Channel-AMQP-Intrinstic.html">Next</a></td></tr></table><hr
 /></div><div class="section"><div class="titlepage"><div><div><h2 
class="title" style="clear: both"><a 
id="Java-Broker-Management-Channel-REST-API"></a>6.3.&#160;REST 
API</h2></div></div></div><div class="section"><div 
class="titlepage"><div><div><h3 class="title"><a 
id="Java-Broker-Management-Channel-REST-API-Introduction"></a>6.3.1.&#160;Introduction</h3></div></div></div><p>This
 section describes the REST API provided by the Apache Qpid Broker for Java. 
The REST API is intended
+      for use by developers who wish to automate the management or monitoring 
of the Qpid Broker. It
+      is also very useful for adhoc monitoring on the command line using tools 
such as
+        <code class="literal">curl</code>.</p><p>The REST API provides access 
to all of the Broker's entities using hierarchical paths
+      expressed by the URI. Responses are returned in JSON format.</p><p>The 
<code class="literal">GET</code> method request retrieves information about an 
object, the
+        <code class="literal">DELETE</code> method requests the removal of 
one, and the <code class="literal">PUT</code>
+      or <code class="literal">POST</code> methods perform updates or create 
new objects. The
+        <code class="literal">POST</code> method is also used to invoke 
operations.</p><p>The REST API is versioned with the version number embedded 
within the URI. The general form
+      of the URI is <code class="literal">/api/&lt;version&gt;</code> where 
&lt;version&gt; is a dot separated
+      major and minor model version prefixed with "v", for example, "v6.1" 
(without the quotation marks).
+      For convenience the alias <code class="literal">latest</code> (<code 
class="literal">/api/latest</code>) signifies the
+      latest supported version.</p><p>There are also some ancillary services 
under URI <code class="literal">/service</code> used for
+      authentication and logout.</p></div><div class="section"><div 
class="titlepage"><div><div><h3 class="title"><a 
id="Java-Broker-Management-Channel-REST-API-APIDocs"></a>6.3.2.&#160;REST API 
documentation</h3></div></div></div><p>REST API documentation is available 
on-line from any Broker at location
+        <code class="literal">/apidocs</code>. It is also linked from the menu 
of the Web Management Console.
+    </p></div><div class="section"><div class="titlepage"><div><div><h3 
class="title"><a 
id="Java-Broker-Management-Channel-REST-API-Authentication"></a>6.3.3.&#160;Authentication</h3></div></div></div><p>Before
 you can use the REST API, you must authenticate. Authentication decisions are 
made
+      by the <a class="link" 
href="Java-Broker-Concepts-Authentication-Providers.html" 
title="4.9.&#160;Authentication Providers">authentication
+        provider</a> associated with HTTP <a class="link" 
href="Java-Broker-Concepts-Ports.html" title="4.8.&#160;Ports">port</a>
+      on which you connect.</p><p>You may authenticate using <a class="link" 
href="https://www.ietf.org/rfc/rfc4422.txt"; target="_top">SASL</a>
+        (<code class="literal">/service/sasl</code>) or <a class="link" 
href="https://tools.ietf.org/html/rfc2617"; target="_top">HTTP
+        Basic Authentication</a>. The latter is convienent when using tools 
such as
+        <code class="literal">curl</code> on the command line. This is 
illustrated in the examples
+      below.</p><p>For SASL authentication use a <code 
class="literal">GET</code> request to
+        <code class="literal">/service/sasl</code> to get a list of supported 
SASL mechanisms, and use
+        <code class="literal">PUT</code> to the same URL to perform the SASL 
negotiation.</p><p>It is possible to end an authenticated session using
+      <code class="literal">/service/logout</code>.</p></div><div 
class="section"><div class="titlepage"><div><div><h3 class="title"><a 
id="Java-Broker-Management-Channel-REST-API-Create"></a>6.3.4.&#160;Configured 
Object creation</h3></div></div></div><p>Methods PUT or POST can be used to 
create ConfiguredObject.</p><p> ConfiguredObject can be created by submitting 
PUT request against ConfiguredObject full
+      URI (the one ending with configured object name) or by submitting 
PUT/POST request against
+      parent URI. The request encoding should be json (application/json) and 
request body should
+      contain attributes values in json format. On successful completion of 
operation a response
+      should be returned having response status code set to 201 and response 
header "Location" set
+      to ConfiguredObject full URI. If object with a such name/id already 
exist and POST/PUT
+      requests is made against parent URI, an error response should be 
returned having response code
+      409 (conflict) and body containing the json with the reason of operation 
failure. If object
+      with a such name/id already exist and and PUT request is made against 
ConfiguredObject full
+      URI, then ConfiguredObject update should be performed and http status 
code 200 should be
+      returned. If ConfiguredObject cannot be created because of validation 
failure(s) the response
+      should have http status code set 422 (Unprocessible Entity) and body 
should contain json with
+      the reason of operation failure. On any other failure to create 
ConfiguredObject the response
+      should have status code set to 400 (Bad Request) and payload should 
contain a json with error
+      explaining the exact reason of failure. </p><div class="example"><a 
id="d0e2132"></a><p class="title"><strong>Example&#160;6.1.&#160;Examples of 
REST calls for Queue creation</strong></p><div class="example-contents"><p> To 
create Queue with name "my-queue" on a virtual host with name "vh" (which is
+        contained within virtual host node with name "vhn") either of the 
following requests should
+        be made: </p><pre class="screen">PUT /api/latest/queue/vhn/vh 
HTTP/1.1</pre><pre class="screen">POST /api/latest/queue/vhn/vh 
HTTP/1.1</pre><pre class="screen">PUT /api/latest/queue/vhn/vh/my-queue 
HTTP/1.1</pre><p> Response code 201 should be returned on successful queue 
creation. Response header
+        "Location" should be set to "/api/latest/queue/test/my-queue". If 
queue with name "my-queue"
+        already exists and either of 2 first requests above were used, an 
error response with
+        response code 409 (conflict) and body containing json with message 
that queue exists should
+        be returned. If queue with name "my-queue" exists and last request is 
used, then Queue
+        update should occur. </p></div></div><br class="example-break" 
/></div><div class="section"><div class="titlepage"><div><div><h3 
class="title"><a 
id="Java-Broker-Management-Channel-REST-API-Update"></a>6.3.5.&#160;Configured 
Object update</h3></div></div></div><p>Methods PUT or POST can be used to 
update ConfiguredObject.</p><p> ConfiguredObject can be updated by submitting 
PUT or POST request against
+      ConfiguredObject full URI (the one ending with configured object name). 
The request encoding
+      should be json (application/json) and request body should contain a 
ConfiguredObject json
+      (with all or only modified attributes). On successful completion of 
operation a response code
+      200 should be returned. If ConfiguredObject does not exists and PUT 
method is used, such
+      object should be created (201 response will be returned in this case). 
If ConfiguredObject
+      does not exists and POST method is used, an error response should be 
returned having response
+      status code 404 and payload with json explaining the problem. If any 
error occur on update, a
+      response with response code 400 or 422 or 404 should be sent back to the 
client containing
+      json body with error details. </p><div class="example"><a 
id="d0e2152"></a><p class="title"><strong>Example&#160;6.2.&#160;Examples of 
REST calls for Queue update</strong></p><div class="example-contents"><p>To 
update Queue with name "my-queue" on a virtual host with name "vh" (contained in
+        virtual host node with name "vhn") either of the following requests 
can be made:</p><pre class="screen">POST /api/latest/queue/vhn/vh/my-queue 
HTTP/1.1</pre><pre class="screen">POST /api/latest/queue/vhn/vh/my-queue 
HTTP/1.1</pre></div></div><br class="example-break" /></div><div 
class="section"><div class="titlepage"><div><div><h3 class="title"><a 
id="Java-Broker-Management-Channel-REST-API-Delete"></a>6.3.6.&#160;Configured 
Object deletion</h3></div></div></div><p>Method DELETE can be used to delete 
ConfiguredObject. Alternatively, ConfiguredObject can
+      be deleted with update request having desiredState attribute set to 
value "DELETED". POST or
+      PUT methods can be used in this case.</p><p>On successful completion of 
operation a response code 200 should be returned.</p><p>With DELETE method 
object ConfiguredObject in following ways:</p><div class="itemizedlist"><ul 
class="itemizedlist" style="list-style-type: disc; "><li class="listitem"><p>by 
submitting DELETE request using ConfiguredObject full URI (the one ending with
+          configured object name)</p></li><li class="listitem"><p>by 
submitting DELETE request using parent URI and providing parameters having the 
same
+          names as children attributes, for example, id, name, etc. Multiple 
children can be deleted
+          in a such way. Many "id" parameters can be specified in such 
requests. Only children with
+          matching attribute values will be deleted.</p></li></ul></div><div 
class="example"><a id="d0e2177"></a><p 
class="title"><strong>Example&#160;6.3.&#160;Examples of REST calls for Queue 
deletion</strong></p><div class="example-contents"><p>To delete Queue with name 
"my-queue" on a virtual host with name "vh" (contained in
+        virtual host node with name "vhn") either of the following requests 
can be made:</p><pre class="screen">DELETE /api/latest/queue/vhn/vh/my-queue 
HTTP/1.1</pre><pre class="screen">DELETE /api/latest/queue/vhn/vh?name=my-queue 
HTTP/1.1</pre><pre class="screen">DELETE 
/api/latest/queue/vhn/vh?id=real-queue-id HTTP/1.1</pre></div></div><br 
class="example-break" /></div><div class="section"><div 
class="titlepage"><div><div><h3 class="title"><a 
id="Java-Broker-Management-Channel-REST-API-Get"></a>6.3.7.&#160;Retrieving 
Configured Object details</h3></div></div></div><p>Method GET is used to 
retrieve ConfiguredObject attributes values and children
+      hierarchy.</p><p>A particular ConfiguredObject details can be retrieved 
using full ConfiguredObject URI
+      (the one ending with configured object name)</p><p>A collection of 
ConfiguredObjects can be retrieved using parent URI. Request parameters
+      (having the same name as attributes) can be used to filter the returned 
configured
+      objects.</p><p>The REST URI (/api/latest/&gt;category&lt;/*) are 
hierarchical. It is permitted to replace
+      REST URI elements with an "asterisks" in GET requests to denote all 
object of a particular
+      type. Additionally, trailing object type in the URL hierarchy can be 
omitted. In this case GET
+      request will return all of the object underneath of the current 
object.</p><p>For example, for binding URL <code 
class="literal">http://localhost:8080/api/latest/binding/&lt;vhost
+        
node&gt;/&lt;vhost&gt;/&lt;exchange&gt;/&lt;queue&gt;/&lt;binding&gt;</code> 
replacing of
+        <code class="literal">&lt;exchange&gt;</code> with "asterisks"
+        (<code 
class="literal">http://localhost:8080/api/&lt;ver&gt;/binding/&lt;vhost
+        node&gt;/&lt;vhost&gt;/*/&lt;queue&gt;/&lt;binding&gt;</code>) will 
result in the GET
+      response containing the list of bindings for all of the exchanges in the 
virtualhost having
+      the given name and given queue.</p><p>If <code 
class="literal">&lt;binding&gt;</code> and <code 
class="literal">&lt;queue&gt;</code> are omitted in
+      binding REST URL (<code 
class="literal">http://localhost:8080/api/&lt;ver&gt;/binding/&lt;vhost
+        node&gt;/&lt;vhost&gt;/&lt;exchangename&gt;</code>) the GET request 
will result in
+      returning all bindings for all queues for the given exchange in the 
virtual host. </p><p>Additional parameters supported in GET requests:</p><div 
class="variablelist"><dl class="variablelist"><dt><span 
class="term">depth</span></dt><dd><p>To restrict the depth of hierarchy of 
configured objects to return in
+            response</p></dd><dt><span 
class="term">actuals</span></dt><dd><p>If set to "true" attribute actual values 
are returned instead of effective</p></dd><dt><span 
class="term">includeSysContext</span></dt><dd><p>If set to "true" all system 
context variables are returned</p></dd><dt><span 
class="term">inheritedActuals</span></dt><dd><p>If set to "true" actual values 
for all inherited context is returned.</p></dd><dt><span 
class="term">oversize</span></dt><dd><p>Sets the maximum length for values of 
over-sized attributes to trim</p></dd><dt><span 
class="term">extractInitialConfig</span></dt><dd><p>If set to "true", the 
returned json can be used as initial 
configuration.</p></dd></dl></div></div><div class="section"><div 
class="titlepage"><div><div><h3 class="title"><a 
id="Java-Broker-Management-Channel-REST-API-Operations"></a>6.3.8.&#160;Configured
 Object operations</h3></div></div></div><p>Method POST is used to invoke 
Configured Objects operations. Some operations support
+      parameters. Pass parameters using a JSON request body containing a map 
with a map entry for
+      each parameter. </p><div class="example"><a id="d0e2265"></a><p 
class="title"><strong>Example&#160;6.4.&#160;Example REST call invoking the 
operation clear queue</strong></p><div class="example-contents"><p>To clear the 
queue with name "my-queue" on a virtual host with name "vh".</p><pre 
class="screen">POST api/latest/queue/vhn/vh/my-queue/clearQueue 
HTTP/1.1</pre></div></div><br class="example-break" /></div><div 
class="section"><div class="titlepage"><div><div><h3 class="title"><a 
id="Java-Broker-Management-Channel-REST-API-Status-Codes"></a>6.3.9.&#160;HTTP 
status codes returned by REST interfaces</h3></div></div></div><div 
class="table"><a id="d0e2275"></a><p 
class="title"><strong>Table&#160;6.1.&#160;HTTP status codes returned by REST 
interfaces</strong></p><div class="table-contents"><table border="1" 
summary="HTTP status codes returned by REST interfaces"><colgroup><col /><col 
/></colgroup><thead><tr><th>Status 
code</th><th>Description</th></tr></thead><tbody><tr><td>
+              <p>200</p>
+            </td><td>
+              <p>REST request is successfully completed. This status code can 
be returned by
+                update, delete and get requests.</p>
+            </td></tr><tr><td>
+              <p>201</p>
+            </td><td>
+              <p>New configured object is created. It is returned by REST PUT 
and POST requests
+                for creation of configured objects.</p>
+            </td></tr><tr><td>
+              <p>400</p>
+            </td><td>
+              <p>REST request cannot be performed due to errors in request. It 
can be returned
+                from create, update and delete requests. The details of a 
problem are provided in
+                the response payload in json format.</p>
+            </td></tr><tr><td>
+              <p>401</p>
+            </td><td>
+              <p>The request requires user authentication</p>
+            </td></tr><tr><td>
+              <p>403</p>
+            </td><td>
+              <p>Execution of request is not allowed due to failure to 
authorize user
+                operation.</p>
+            </td></tr><tr><td>
+              <p>404</p>
+            </td><td>
+              <p> The requested configured object cannot be found. This status 
code can be
+                returned from POST update requests if configured object does 
not exist. The reason
+                for the status code is provided in the response payload in 
json format. </p>
+            </td></tr><tr><td>
+              <p>409</p>
+            </td><td>
+              <p>The request can not be performed because its execution can 
create conflicts in
+                the broker. This status code can be returned from POST/PUT 
create requests against
+                parent URI if configured object with requested name or id 
already exists. The status
+                code 409 can also be returned if removal or update of 
configured object can violate
+                system integrity. The reason for the status code is provided 
in the response payload
+                in json format. </p>
+            </td></tr><tr><td>
+              <p>422</p>
+            </td><td>
+              <p>The request can not be performed because provided information 
either incomplete
+                or invalid. This status code can be returned from create or 
update requests. The
+                reason for the status code is provided in the response payload 
in json
+                format.</p>
+            </td></tr></tbody></table></div></div><br class="table-break" 
/></div><div class="section"><div class="titlepage"><div><div><h3 
class="title"><a 
id="Java-Broker-Management-Channel-REST-API-Examples"></a>6.3.10.&#160;Examples 
of REST requests with curl</h3></div></div></div><div class="example"><a 
id="d0e2377"></a><p class="title"><strong>Example&#160;6.5.&#160;Examples of 
queue creation using curl (authenticating as user admin):</strong></p><div 
class="example-contents"><pre class="programlisting">
+#create a durable queue
+curl --user admin -X PUT  -d '{"durable":true}' 
http://localhost:8080/api/latest/queue/&lt;vhostnode 
name&gt;/&lt;vhostname&gt;/&lt;queuename&gt;
+#create a durable priority queue
+curl --user admin -X PUT  -d '{"durable":true,"type":"priority"}' 
http://localhost:8080/api/latest/queue/&lt;vhostnode 
name&gt;/&lt;vhostname&gt;/&lt;queuename&gt;
+            </pre></div></div><br class="example-break" /><div 
class="example"><a id="d0e2382"></a><p 
class="title"><strong>Example&#160;6.6.&#160;Example of binding a queue to an 
exchange using curl</strong></p><div class="example-contents"><pre 
class="programlisting">
+curl --user admin -X PUT  -d '{}' 
http://localhost:8080/api/latest/binding/&lt;vhostnode 
name&gt;/&lt;vhostname&gt;/&lt;exchangename&gt;/&lt;queue-name&gt;/&lt;binding-name&gt;
+            </pre></div></div><br class="example-break" /><p> NOTE: These curl 
examples utilise unsecure HTTP transport. To use the examples it is
+      first necessary enable Basic authentication for HTTP within the HTTP 
Management Configuration
+      (it is off by default). For details see <a class="xref" 
href="Java-Broker-Management-Managing-Plugin-HTTP.html" title="7.16.&#160;HTTP 
Plugin">Section&#160;7.16, &#8220;HTTP Plugin&#8221;</a>
+    </p></div><div class="section"><div class="titlepage"><div><div><h3 
class="title"><a 
id="Java-Broker-Management-Channel-REST-Query-API"></a>6.3.11.&#160;Query 
API</h3></div></div></div><div class="section"><div 
class="titlepage"><div><div><h4 class="title"><a 
id="Java-Broker-Management-Channel-REST-Query-API-Introduction"></a>6.3.11.1.&#160;Introduction</h4></div></div></div><p>The
 <span class="emphasis"><em>Qpid Broker for Java</em></span> provides a 
powerful feature called
+            the <span class="emphasis"><em>Query API</em></span>. This allows 
the retrieval of the existing configured objects attributes
+            satisfying user-provided queries.</p><p>Developers and operators 
can use this feature to monitor the Broker.
+            For example, using <span class="emphasis"><em>Query 
API</em></span> one can find all queues with queue depth
+            exceeding some limit or existing connections made from a 
particular location(s).</p></div><div class="section"><div 
class="titlepage"><div><div><h4 class="title"><a 
id="Java-Broker-Management-Channel-REST-Query-API-Overview"></a>6.3.11.2.&#160;Query
 API Overview</h4></div></div></div><p>
+            When using the <span class="emphasis"><em>Query API</em></span> 
one specifies the category of the object
+            to query, a list of attributes to return in the result set, an 
optional where clause,
+            expressed as a predicate, that determines the filtering criteria, 
ordering, and
+            limit/offset. The features should be readily recognisable to 
anyone who has has familiarity
+            with SQL.
+        </p><p>Queries associate with either the <span 
class="emphasis"><em>broker</em></span> as a whole, or an
+            individual  <span class="emphasis"><em>virtualhost</em></span>.  
Queries associated with the Broker
+            can query any object within the Broker. Queries associated with a 
virtualhost are limited
+            to the objects of the virtualhost itself.   For instance a queue 
query associated
+            with a virtualhost queries only the queues belonging to that 
virtualhost.  On the other
+            hand, a queue query associated with the Broker sees all the queues 
belonging on the entire
+            Broker.
+        </p><p>
+            </p><div class="table"><a id="d0e2429"></a><p 
class="title"><strong>Table&#160;6.2.&#160;Query API URLs</strong></p><div 
class="table-contents"><table border="1" summary="Query API 
URLs"><colgroup><col /><col /></colgroup><thead><tr><th>Query API 
URL</th><th>Description</th></tr></thead><tbody><tr><td>
+                                <p>/api/latest/querybroker/&lt;configured 
object category name&gt;</p>
+                                
<p>/api/&lt;version&gt;/querybroker/&lt;configured object category name&gt;</p>
+                            </td><td>
+                                <p>Query API URL fragment to query the 
specified object type across the entire broker</p>
+                            </td></tr><tr><td>
+                                <p>/api/latest/queryvhost/&lt;virtual host 
node name&gt;/&lt;virtual host name&gt;/&lt;configured object category 
name&gt;</p>
+                                <p>/api/&lt;version&gt;/queryvhost/&lt;virtual 
host node name&gt;/&lt;virtual host name&gt;/&lt;configured object category 
name&gt;</p>
+                            </td><td>
+                                <p>Query API URL fragment to query the 
specified object type for a specific virtualhost</p>
+                            </td></tr></tbody></table></div></div><p><br 
class="table-break" />
+        </p><p>
+            The QueryAPI accepts <code class="literal">select</code>, <code 
class="literal">where</code>, <code class="literal">orderBy</code>,
+            <code class="literal">limit</code> and <code 
class="literal">offset</code> request parameters.
+            </p><div class="table"><a id="d0e2486"></a><p 
class="title"><strong>Table&#160;6.3.&#160;Query API request 
parameters</strong></p><div class="table-contents"><table border="1" 
summary="Query API request parameters"><colgroup><col /><col 
/></colgroup><thead><tr><th>Parameter Name</th><th>Parameter 
Description</th></tr></thead><tbody><tr><td>
+                                <p><code class="literal">select</code></p>
+                            </td><td>
+                                <p>The <code class="literal">select</code> 
defines the columns of the result set.  It is a
+                                    comma-separated list of expressions.  At 
its most simple, an expression can be
+                                    the name of the attribute (e.g. <code 
class="literal">queueDepthBytes</code>), but more complex
+                                    <a class="link" 
href="Java-Broker-Management-Channel-REST-API.html#Java-Broker-Management-Channel-REST-Query-API-Expressions"
 title="Query API expressions">expressions</a> are also supported.</p>
+                                <p>Columns within the result set are named.  
For expressions that are simple attribute
+                                    names, the column names will follow the 
attributes themselves.  By default, other
+                                    expressions will have a no name.</p>
+                                <p>Column names can be overridden with an 
<code class="literal">AS</code>
+                                    clause e.g. <code class="literal">now() AS 
currentDate</code>
+                                </p>
+                            </td></tr><tr><td>
+                                <p><code class="literal">where</code></p>
+                            </td><td>
+                                <p>The <code class="literal">where</code> 
provides a boolean expression defining the result set filtering.</p>
+                                <p>The syntax of the <a class="link" 
href="Java-Broker-Management-Channel-REST-API.html#Java-Broker-Management-Channel-REST-Query-API-Expressions"
 title="Query API expressions">expression</a>
+                                    is based on a subset of the SQL92 
conditional expression syntax and is similar to selector expressions in JMS e.g.
+                                    <code class="literal">queueDepthBytes &gt; 
16384 AND name like '%flow_queue'</code>.
+                                </p>
+                            </td></tr><tr><td>
+                                <p><code class="literal">orderBy</code></p>
+                            </td><td>
+                                <p>Ordering conditions; the syntax of the
+                                    <a class="link" 
href="Java-Broker-Management-Channel-REST-API.html#Java-Broker-Management-Channel-REST-Query-API-Expressions"
 title="Query API expressions">
+                                        expression
+                                    </a>
+                                    is based on a subset of
+                                    the SQL92 ordering expression syntax. 
Similar to ordering expressions in SQL,
+                                    one can specify in ordering expression 
attributes names, sub-expressions
+                                    or indexes (starting from 1) of attributes 
or expressions specified in select.
+                                </p>
+                            </td></tr><tr><td>
+                                <p><code class="literal">limit</code></p>
+                            </td><td>
+                                <p>The maximum number of results to provide 
starting from given offset.</p>
+                            </td></tr><tr><td>
+                                <p><code class="literal">offset</code></p>
+                            </td><td>
+                                <p>An offset in results (default is 0) to 
provide results from.</p>
+                            </td></tr></tbody></table></div></div><p><br 
class="table-break" />
+        </p><div class="example"><a id="d0e2594"></a><p 
class="title"><strong>Example&#160;6.7.&#160;Example of a Query API request to 
retrieve queue names and depths.</strong></p><div class="example-contents"><pre 
class="screen">GET 
api/latest/querybroker/queue?select=name,queueDepthBytes,queueDepthMessages&amp;where=queueDepthBytes&gt;0&amp;orderBy=1
 desc,2 desc&amp;offset=0&amp;limit=100 HTTP/1.1</pre></div></div><br 
class="example-break" /></div><div class="section"><div 
class="titlepage"><div><div><h4 class="title"><a 
id="Java-Broker-Management-Channel-REST-Query-API-Results"></a>6.3.11.3.&#160;Query
 API Results</h4></div></div></div><p>The <span class="emphasis"><em>Query 
API</em></span> returns a JSON response.  The response contains the following:
+            </p><div class="variablelist"><dl class="variablelist"><dt><span 
class="term"><code class="literal">headers</code></span></dt><dd><p>ordered 
list of result set column names derived from the <code 
class="literal">select</code>
+                            clause. Note that anonymous expressions (that is, 
those expressed without an
+                            <code class="literal">AS</code>) will have empty 
column name.</p></dd><dt><span class="term"><code 
class="literal">results</code></span></dt><dd><p>two dimensional array 
containing the result-set</p></dd><dt><span class="term"><code 
class="literal">total</code></span></dt><dd><p>The <span 
class="emphasis"><em>total</em></span> number of results matching the where 
criteria.</p></dd></dl></div><p>
+        </p><div class="example"><a id="d0e2639"></a><p 
class="title"><strong>Example&#160;6.8.&#160;Example of Query API call for 
queue names and depths.</strong></p><div class="example-contents"><pre 
class="screen">GET 
api/latest/querybroker/queue?select=name,queueDepthBytes,queueDepthMessages&amp;where=queueDepthBytes&gt;0&amp;orderBy=1
 desc,2 desc&amp;offset=0&amp;limit=100 HTTP/1.1</pre><pre 
class="programlisting">
+{
+    "headers" : [ "name", "queueDepthBytes", "queueDepthMessages" ],
+    "results" : [ [ "foo", 312, 26], [ "bar", 300, 24 ] ],
+    "total" : 2
+}
+            </pre></div></div><br class="example-break" /><div 
class="section"><div class="titlepage"><div><div><h5 class="title"><a 
id="Java-Broker-Management-Channel-REST-Query-API-Expressions"></a>Query API 
expressions</h5></div></div></div><p>Expressions within the <code 
class="literal">select</code>, <code class="literal">where</code> and <code 
class="literal">orderBy</code>
+                clauses can be comprised in the following manner. Expressions 
can be nested to arbitary depth. Parentheses
+                allow for precedence to be explicitly denoted.
+            </p><div class="itemizedlist"><ul class="itemizedlist" 
style="list-style-type: disc; "><li class="listitem"><p>variable name which can 
be an attribute name e.g <code class="literal">queueDepthBytes</code> or
+                a reference to a parent attribute <code 
class="literal">$parent.name</code></p></li><li class="listitem"><p>literal 
e.g. <code class="literal">3</code> or <code 
class="literal">'foo'</code></p></li><li class="listitem"><p>functions - see 
below e.g. <code class="literal">now()</code> or <code 
class="literal">to_string(createdDate, '%tm/%td/%ty', 'EST')</code></p></li><li 
class="listitem"><p>arithmetic operations e.g. <code class="literal">3 * 
4</code> or <code class="literal">to_string(now()) + 
name</code></p></li></ul></div><p>The following functions are supported:
+                </p><div class="table"><a id="d0e2695"></a><p 
class="title"><strong>Table&#160;6.4.&#160;Query API functions</strong></p><div 
class="table-contents"><table border="1" summary="Query API 
functions"><colgroup><col /><col /></colgroup><thead><tr><th>Function 
Name</th><th>Function Description</th></tr></thead><tbody><tr><td>
+                                <p><code 
class="literal">concat(obj[,obj..])</code></p>
+                            </td><td>
+                                <p>concatenates the given objects into a 
string</p>
+                            </td></tr><tr><td>
+                                <p><code class="literal">now()</code></p>
+                            </td><td>
+                                <p>returns current date and time</p>
+                            </td></tr><tr><td>
+                                <p><code 
class="literal">to_date(object)</code></p>
+                            </td><td>
+                                <p>converts the first parameter, which must be 
a string. into a date.  The
+                                string must be in ISO-8601 format e.g. <code 
class="literal">1970-01-01T10:00:00Z</code>.</p>
+                            </td></tr><tr><td>
+                                <p><code class="literal">date_add(object, 
duration)</code></p>
+                            </td><td>
+                                <p>adds the given ISO-8601 duration <code 
class="literal">duration</code> e.g.
+                                    <code class="literal">P1D</code> or <code 
class="literal">-PT10H</code> to the date provided by the
+                                    first parameter.</p>
+                            </td></tr><tr><td>
+                                <p><code class="literal">to_string(object[, 
format[, timezone]])</code></p>
+                            </td><td>
+                                <p>Converts given object into a string.</p>
+                                <p>If the format argument is present, it must 
be a Java
+                                    <a class="link" 
href="http://docs.oracle.com/javase/7/docs/api/java/util/Formatter.html"; 
target="_top">Formatter</a>
+                                    compliant string e.g. <code 
class="literal">%f</code> or <code class="literal">%tY-%tm-%td</code>.
+                                </p>
+                                <p>The timezone argument is significant if the 
object is a Date. If the timezone
+                                    argument is specified it must be a valid 
Java timezone name. The date is converted
+                                    to the specified timezone before being 
formatted by the<code class="literal">format</code>.
+                                    If the timezone is omitted <code 
class="literal">UTC</code> is assumed.
+                                </p>
+                            </td></tr></tbody></table></div></div><p><br 
class="table-break" />
+            </p></div></div></div><div class="section"><div 
class="titlepage"><div><div><h3 class="title"><a 
id="Java-Broker-Management-Channel-REST-API-CORS"></a>6.3.12.&#160;Cross Origin 
Resource Sharing (CORS)</h3></div></div></div><p> The Broker supports Cross 
Origin Resource Sharing (CORS)
+      to allow web management consoles other than the one embedded in the
+      broker to use the REST API.  This feature must be enabled by configuring
+      the CORS Allow Origins and related attributes on the
+      <a class="xref" href="Java-Broker-Management-Managing-Plugin-HTTP.html" 
title="7.16.&#160;HTTP Plugin">Section&#160;7.16, &#8220;HTTP Plugin&#8221;</a>
+    </p></div></div><div class="navfooter"><hr /><table summary="Navigation 
footer" width="100%"><tr><td align="left" width="40%"><a accesskey="p" 
href="Java-Broker-Management-Channel-Web-Console.html">Prev</a>&#160;</td><td 
align="center" width="20%"><a accesskey="u" 
href="Java-Broker-Management-Channel.html">Up</a></td><td align="right" 
width="40%">&#160;<a accesskey="n" 
href="Java-Broker-Management-Channel-AMQP-Intrinstic.html">Next</a></td></tr><tr><td
 align="left" valign="top" width="40%">6.2.&#160;Web Management 
Console&#160;</td><td align="center" width="20%"><a accesskey="h" 
href="AMQP-Messaging-Broker-Java-Book.html">Home</a></td><td align="right" 
valign="top" width="40%">&#160;6.4.&#160;AMQP Intrinstic 
Management</td></tr></table></div></div>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/32dce6b5/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Channel-Web-Console.html.in
----------------------------------------------------------------------
diff --git 
a/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Channel-Web-Console.html.in
 
b/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Channel-Web-Console.html.in
new file mode 100644
index 0000000..b37e295
--- /dev/null
+++ 
b/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Channel-Web-Console.html.in
@@ -0,0 +1,48 @@
+<div class="docbook"><div class="navheader"><table summary="Navigation header" 
width="100%"><tr><th align="center" colspan="3">6.2.&#160;Web Management 
Console</th></tr><tr><td align="left" width="20%"><a accesskey="p" 
href="Java-Broker-Management-Channel.html">Prev</a>&#160;</td><th 
align="center" width="60%">Chapter&#160;6.&#160;Management Channels</th><td 
align="right" width="20%">&#160;<a accesskey="n" 
href="Java-Broker-Management-Channel-REST-API.html">Next</a></td></tr></table><hr
 /></div><div class="section"><div class="titlepage"><div><div><h2 
class="title" style="clear: both"><a 
id="Java-Broker-Management-Channel-Web-Console"></a>6.2.&#160;Web Management 
Console</h2></div></div></div><p> The Web Management Console provides a simple 
and intuitive interface for the Management
+        and Control of the Broker. From here, all aspects of the Broker can be 
controlled,
+        including: </p><div class="itemizedlist"><ul class="itemizedlist" 
style="list-style-type: disc; "><li class="listitem"><p>add, remove and monitor 
queues</p></li><li class="listitem"><p>inspect, move, copy or delete 
messages</p></li><li class="listitem"><p>add, remove and monitor 
virtualhosts</p></li><li class="listitem"><p>configure and control high 
availability</p></li></ul></div><p>
+    </p><p>The remainder of the section provides an introduction to the web 
management console and
+        its use.</p><div class="section"><div class="titlepage"><div><div><h3 
class="title"><a 
id="Java-Broker-Management-Channel-Web-Console-Accessing"></a>6.2.1.&#160;Accessing
 the Console</h3></div></div></div><p>The Web Management Console is provided by 
the HTTP Management Plugin. Providing the
+            HTTP Management Plugin is in its default configuration, the Web 
Management Console can
+            be accessed by pointing a browser at the following URL:</p><p>
+            <code class="literal">http://myhost.mydomain.com:8080</code>
+        </p><p>The Console will prompt you to login using a username and 
password.</p><div class="figure"><a id="d0e1845"></a><p 
class="title"><strong>Figure&#160;6.1.&#160;Web Management Console - 
Authentication</strong></p><div class="figure-contents"><div 
class="mediaobject"><table border="0" style="cellpadding: 0; cellspacing: 0;" 
summary="manufactured viewport for HTML img" width="900"><tr><td><img alt="Web 
Console Authentication" src="images/Management-Web-Auth.png" width="900" 
/></td></tr></table></div></div></div><br class="figure-break" /></div><div 
class="section"><div class="titlepage"><div><div><h3 class="title"><a 
id="Java-Broker-Management-Channel-Web-Console-Orientation"></a>6.2.2.&#160;Orientation</h3></div></div></div><p>After
 you have logged on you will see a screen similar to the following. The elements
+            of the screen are now explained.</p><div class="figure"><a 
id="d0e1859"></a><p class="title"><strong>Figure&#160;6.2.&#160;Web Management 
Orientation - Console</strong></p><div class="figure-contents"><div 
class="mediaobject"><table border="0" style="cellpadding: 0; cellspacing: 0;" 
summary="manufactured viewport for HTML img" width="900"><tr><td><img alt="The 
Web Console" src="images/Management-Web-Console.png" width="900" 
/></td></tr></table></div></div></div><br class="figure-break" /><p>
+            </p><div class="itemizedlist"><ul class="itemizedlist" 
style="list-style-type: disc; "><li class="listitem"><p><span 
class="emphasis"><em>A</em></span> - Hierarchy view. Expandable/collapsible view
+                        showing all entities within the Broker. Double click 
on an entity name to
+                        cause its tab to be opened. </p></li><li 
class="listitem"><p><span class="emphasis"><em>B</em></span> - Tab. Shows the 
details of an entity including its
+                        attributes and its child entities. </p></li><li 
class="listitem"><p><span class="emphasis"><em>C</em></span> - Occluded tab. 
Click tab name to bring the tab to
+                        the front.</p></li><li class="listitem"><p><span 
class="emphasis"><em>D</em></span> - Auto restore check box. Checked tabs will 
be
+                        automatically restored on subsequent 
login.</p></li><li class="listitem"><p><span class="emphasis"><em>E</em></span> 
- Close. Click to close the tab.</p></li><li class="listitem"><p><span 
class="emphasis"><em>F</em></span> - User Menu. Access to Preferences, Logout 
and
+                        Help.</p></li></ul></div><p>
+        </p><div class="figure"><a 
id="Java-Broker-Management-Channel-Web-Console-Orientation-Tab"></a><p 
class="title"><strong>Figure&#160;6.3.&#160;Web Management Orientation - 
Tab</strong></p><div class="figure-contents"><div class="mediaobject"><table 
border="0" style="cellpadding: 0; cellspacing: 0;" summary="manufactured 
viewport for HTML img" width="900"><tr><td><img alt="A tab within the Web 
Consle" src="images/Management-Web-Tab.png" width="900" 
/></td></tr></table></div></div></div><br class="figure-break" /><p>The 
elements of a tab are now explained: </p><div class="itemizedlist"><ul 
class="itemizedlist" style="list-style-type: disc; "><li 
class="listitem"><p><span class="emphasis"><em>1</em></span> - Attribute Panel. 
Shows the attributes of the
+                        entity. Click the panel title bar opens/closes the 
panel.</p></li><li class="listitem"><p><span class="emphasis"><em>2</em></span> 
- Child Panels. Panels containing a table listing
+                        the children of the entity. Click the panel title bar 
opens/closes the
+                        panel.</p></li><li class="listitem"><p><span 
class="emphasis"><em>3</em></span> - Child Row. Row summarizing a child entity. 
Double
+                        click to open the child tab.</p></li><li 
class="listitem"><p><span class="emphasis"><em>4</em></span> - Child 
Operations. Buttons to add a new child or
+                        perform operations on existing 
children.</p></li></ul></div><p>
+        </p></div><div class="section"><div class="titlepage"><div><div><h3 
class="title"><a 
id="Java-Broker-Management-Channel-Web-Console-Managing-Entities"></a>6.2.3.&#160;Managing
 Entities</h3></div></div></div><p>All the Entities of the Broker of can be 
managed through the Web Console.</p><div class="section"><div 
class="titlepage"><div><div><h4 class="title"><a 
id="Java-Broker-Management-Channel-Web-Console-Managing-Entities-Add"></a>6.2.3.1.&#160;Adding
 Entities</h4></div></div></div><p>To <span 
class="emphasis"><em>add</em></span> a new entity, click the <code 
class="literal">Add</code> button
+                on the Child Panel on the Parent's tab. Clicking the Add 
button causes an add
+                dialogue to be displayed.</p><p>Add dialogues allow you to set 
the attributes of the new child, and set context
+                variables. Most fields on the add dialogue have field level 
help that give more
+                details about the attribute and any default value (which may 
be expressed in terms
+                of a context variable) that will take effect if you leave the 
attribute unset. An
+                example add dialogue is shown in the figure that 
follows.</p><div class="figure"><a 
id="Java-Broker-Management-Channel-Web-Console-Managing-Entities-Add-Dialogue"></a><p
 class="title"><strong>Figure&#160;6.4.&#160;Web Management Orientation - Add 
Dialogue</strong></p><div class="figure-contents"><div class="mediaobject"><img 
alt="Example add dialogue showing field level help" 
src="images/Management-Web-Add-Dialogue.png" /></div></div></div><br 
class="figure-break" /></div><div class="section"><div 
class="titlepage"><div><div><h4 class="title"><a 
id="Java-Broker-Management-Channel-Web-Console-Managing-Entities-Edit"></a>6.2.3.2.&#160;Editing
 Entities</h4></div></div></div><p>To <span 
class="emphasis"><em>edit</em></span> an existing entity, click the <code 
class="literal">Edit</code>
+                button on the tab corresponding to the Entity itself. Editing 
an entity lets you
+                change some of its attributes and modify its context 
variables. Most fields on the
+                edit dialogue have field level help that give more details 
about the attribute and
+                any default value. An example edit dialogue is shown in the 
figure that
+                follows.</p><div class="figure"><a 
id="Java-Broker-Management-Channel-Web-Console-Managing-Entities-Edit-Dialogue"></a><p
 class="title"><strong>Figure&#160;6.5.&#160;Web Management Orientation - Edit 
Dialogue</strong></p><div class="figure-contents"><div class="mediaobject"><img 
alt="Example edit dialogue" src="images/Management-Web-Edit-Dialogue.png" 
/></div></div></div><br class="figure-break" /></div><div class="section"><div 
class="titlepage"><div><div><h4 class="title"><a 
id="Java-Broker-Management-Channel-Web-Console-Managing-Entities-Delete"></a>6.2.3.3.&#160;Deleting
 Entities</h4></div></div></div><p>To <span 
class="emphasis"><em>remove</em></span> an existing entity, click the
+                    <code class="literal">Delete</code> button on the tab 
corresponding to the Entity itself.
+                For some child types, you can select many children from the 
parent's type and delete
+                many children at once.</p></div><div class="section"><div 
class="titlepage"><div><div><h4 class="title"><a 
id="Java-Broker-Management-Channel-Web-Console-Managing-Context-Variables"></a>6.2.3.4.&#160;Context
 Variables</h4></div></div></div><p>All Entities within the Broker have the 
ability to have <a class="link" 
href="Java-Broker-Management-Managing-Entities.html#Java-Broker-Management-Managing-Entities-General"
 title="7.1.&#160;General Description">context
+                    variables</a> associated with them.</p><p>Most add and 
edit dialogues have the ability to make context variable assignments.
+                To add/change/remove a context variable, click the Context 
Variable panel to expand
+                it.</p><div class="figure"><a 
id="Java-Broker-Management-Channel-Web-Console-Managing-Entities-Context-Variables-Dialogue"></a><p
 class="title"><strong>Figure&#160;6.6.&#160;Web Management Orientation - 
Context Variables</strong></p><div class="figure-contents"><div 
class="mediaobject"><img alt="Editting Context Variables" 
src="images/Management-Web-ContextVar.png" /></div></div></div><br 
class="figure-break" /><p>You will see any context variables already associated 
with the object, called
+                local context variables in bold, and any inherited from above 
in normal face.</p><p>Since context variables can be defined in terms of other 
context variables, the
+                display has two value columns: actual and effective. Actual 
shows the value truely
+                associated with the variable, where as effective shows the 
resulting value, after
+                variable expansion has taken place.</p><p>The <code 
class="literal">+</code> button allows new variables to be added. The
+                    <code class="literal">-</code> button removes existing 
ones.</p><p>You change an existing local variables defintion by clicking on the 
actual value.
+                You can also <span class="emphasis"><em>provide a local 
definition</em></span> for an inherited value
+                by clicking on the actual value and typing its new 
value.</p></div></div></div><div class="navfooter"><hr /><table 
summary="Navigation footer" width="100%"><tr><td align="left" width="40%"><a 
accesskey="p" href="Java-Broker-Management-Channel.html">Prev</a>&#160;</td><td 
align="center" width="20%"><a accesskey="u" 
href="Java-Broker-Management-Channel.html">Up</a></td><td align="right" 
width="40%">&#160;<a accesskey="n" 
href="Java-Broker-Management-Channel-REST-API.html">Next</a></td></tr><tr><td 
align="left" valign="top" width="40%">Chapter&#160;6.&#160;Management 
Channels&#160;</td><td align="center" width="20%"><a accesskey="h" 
href="AMQP-Messaging-Broker-Java-Book.html">Home</a></td><td align="right" 
valign="top" width="40%">&#160;6.3.&#160;REST API</td></tr></table></div></div>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/32dce6b5/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Channel.html.in
----------------------------------------------------------------------
diff --git 
a/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Channel.html.in
 
b/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Channel.html.in
new file mode 100644
index 0000000..d9614e8
--- /dev/null
+++ 
b/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Channel.html.in
@@ -0,0 +1,13 @@
+<div class="docbook"><div class="navheader"><table summary="Navigation header" 
width="100%"><tr><th align="center" colspan="3">Chapter&#160;6.&#160;Management 
Channels</th></tr><tr><td align="left" width="20%"><a accesskey="p" 
href="Java-Broker-Initial-Configuration-Example.html">Prev</a>&#160;</td><th 
align="center" width="60%">&#160;</th><td align="right" width="20%">&#160;<a 
accesskey="n" 
href="Java-Broker-Management-Channel-Web-Console.html">Next</a></td></tr></table><hr
 /></div><div class="chapter"><div class="titlepage"><div><div><h1 
class="title"><a 
id="Java-Broker-Management-Channel"></a>Chapter&#160;6.&#160;Management 
Channels</h1></div></div></div><div class="toc"><p><strong>Table of 
Contents</strong></p><dl class="toc"><dt><span class="section"><a 
href="Java-Broker-Management-Channel.html#Java-Broker-Management-Channel-HTTP">6.1.
 HTTP Management</a></span></dt><dd><dl><dt><span class="section"><a 
href="Java-Broker-Management-Channel.html#Java-Broker-Management-Channel-HTT
 P-Introduction">6.1.1. Introduction</a></span></dt><dt><span 
class="section"><a 
href="Java-Broker-Management-Channel.html#Java-Broker-Management-Channel-HTTP-DefaultConfiguration">6.1.2.
 Default Configuration</a></span></dt></dl></dd><dt><span class="section"><a 
href="Java-Broker-Management-Channel-Web-Console.html">6.2. Web Management 
Console</a></span></dt><dd><dl><dt><span class="section"><a 
href="Java-Broker-Management-Channel-Web-Console.html#Java-Broker-Management-Channel-Web-Console-Accessing">6.2.1.
 Accessing the Console</a></span></dt><dt><span class="section"><a 
href="Java-Broker-Management-Channel-Web-Console.html#Java-Broker-Management-Channel-Web-Console-Orientation">6.2.2.
 Orientation</a></span></dt><dt><span class="section"><a 
href="Java-Broker-Management-Channel-Web-Console.html#Java-Broker-Management-Channel-Web-Console-Managing-Entities">6.2.3.
 Managing Entities</a></span></dt></dl></dd><dt><span class="section"><a 
href="Java-Broker-Management-Channel-REST-API.html
 ">6.3. REST API</a></span></dt><dd><dl><dt><span class="section"><a 
href="Java-Broker-Management-Channel-REST-API.html#Java-Broker-Management-Channel-REST-API-Introduction">6.3.1.
 Introduction</a></span></dt><dt><span class="section"><a 
href="Java-Broker-Management-Channel-REST-API.html#Java-Broker-Management-Channel-REST-API-APIDocs">6.3.2.
 REST API documentation</a></span></dt><dt><span class="section"><a 
href="Java-Broker-Management-Channel-REST-API.html#Java-Broker-Management-Channel-REST-API-Authentication">6.3.3.
 Authentication</a></span></dt><dt><span class="section"><a 
href="Java-Broker-Management-Channel-REST-API.html#Java-Broker-Management-Channel-REST-API-Create">6.3.4.
 Configured Object creation</a></span></dt><dt><span class="section"><a 
href="Java-Broker-Management-Channel-REST-API.html#Java-Broker-Management-Channel-REST-API-Update">6.3.5.
 Configured Object update</a></span></dt><dt><span class="section"><a 
href="Java-Broker-Management-Channel-REST-API.html#Java-Broke
 r-Management-Channel-REST-API-Delete">6.3.6. Configured Object 
deletion</a></span></dt><dt><span class="section"><a 
href="Java-Broker-Management-Channel-REST-API.html#Java-Broker-Management-Channel-REST-API-Get">6.3.7.
 Retrieving Configured Object details</a></span></dt><dt><span 
class="section"><a 
href="Java-Broker-Management-Channel-REST-API.html#Java-Broker-Management-Channel-REST-API-Operations">6.3.8.
 Configured Object operations</a></span></dt><dt><span class="section"><a 
href="Java-Broker-Management-Channel-REST-API.html#Java-Broker-Management-Channel-REST-API-Status-Codes">6.3.9.
 HTTP status codes returned by REST interfaces</a></span></dt><dt><span 
class="section"><a 
href="Java-Broker-Management-Channel-REST-API.html#Java-Broker-Management-Channel-REST-API-Examples">6.3.10.
 Examples of REST requests with curl</a></span></dt><dt><span 
class="section"><a 
href="Java-Broker-Management-Channel-REST-API.html#Java-Broker-Management-Channel-REST-Query-API">6.3.11.
 Query API</a></sp
 an></dt><dt><span class="section"><a 
href="Java-Broker-Management-Channel-REST-API.html#Java-Broker-Management-Channel-REST-API-CORS">6.3.12.
 Cross Origin Resource Sharing (CORS)</a></span></dt></dl></dd><dt><span 
class="section"><a 
href="Java-Broker-Management-Channel-AMQP-Intrinstic.html">6.4. AMQP Intrinstic 
Management</a></span></dt><dt><span class="section"><a 
href="Java-Broker-Management-Channel-QMF.html">6.5. 
QMF</a></span></dt></dl></div><p>The Broker can be managed over a number of 
different channels.</p><div class="itemizedlist"><ul class="itemizedlist" 
style="list-style-type: disc; "><li class="listitem"><p>HTTP - The primary 
channel for management. The HTTP interface comprises a Web
+        Console and a REST API.</p></li><li class="listitem"><p>AMQP - The 
AMQP protocols 0-8..0-10 allow for some management of Exchanges, Queue and
+        Bindings. This will be superseded by AMQP 1.0 Management. It is 
suggested that new users
+        favour the Management facilities provided by the Web Console/REST 
API.</p></li></ul></div><div class="section"><div 
class="titlepage"><div><div><h2 class="title" style="clear: both"><a 
id="Java-Broker-Management-Channel-HTTP"></a>6.1.&#160;HTTP 
Management</h2></div></div></div><div class="section"><div 
class="titlepage"><div><div><h3 class="title"><a 
id="Java-Broker-Management-Channel-HTTP-Introduction"></a>6.1.1.&#160;Introduction</h3></div></div></div><p>The
 HTTP Management plugin provides a HTTP based API for monitoring and control of 
the
+            Broker. The plugin actually provides two interfaces:</p><div 
class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; 
"><li class="listitem"><p><a class="link" 
href="Java-Broker-Management-Channel-Web-Console.html" title="6.2.&#160;Web 
Management Console">Web Management
+                            Console</a> - rich web based interface for the 
management of the
+                        Broker.</p></li><li class="listitem"><p><a 
class="link" href="Java-Broker-Management-Channel-REST-API.html" 
title="6.3.&#160;REST API">REST API</a> -
+                        REST API providing complete programmatic management of 
the Broker.</p></li></ul></div><p>The Web Management Console itself uses the 
REST API, so every function you can perform
+            through the Web Management Console can be also be scripted and 
integrated into other
+            systems. This provides a simple integration point allowing the 
Broker to monitored and
+            controlled from systems such as Naoios or BMC 
Control-M.</p></div><div class="section"><div class="titlepage"><div><div><h3 
class="title"><a 
id="Java-Broker-Management-Channel-HTTP-DefaultConfiguration"></a>6.1.2.&#160;Default
 Configuration</h3></div></div></div><p>By default, the Broker is shipped with 
HTTP enabled running port 8080. The HTTP plugin
+            is configured to require SASL authentication. The port is not SSL 
protected.</p><p>The settings can be changed by configuring the HTTP plugin 
and/or the port configured
+            to serve HTTP.</p></div></div></div><div class="navfooter"><hr 
/><table summary="Navigation footer" width="100%"><tr><td align="left" 
width="40%"><a accesskey="p" 
href="Java-Broker-Initial-Configuration-Example.html">Prev</a>&#160;</td><td 
align="center" width="20%">&#160;</td><td align="right" width="40%">&#160;<a 
accesskey="n" 
href="Java-Broker-Management-Channel-Web-Console.html">Next</a></td></tr><tr><td
 align="left" valign="top" width="40%">5.7.&#160;Example of JSON 'Initial 
Configuration'&#160;</td><td align="center" width="20%"><a accesskey="h" 
href="AMQP-Messaging-Broker-Java-Book.html">Home</a></td><td align="right" 
valign="top" width="40%">&#160;6.2.&#160;Web Management 
Console</td></tr></table></div></div>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/32dce6b5/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Managing-Access-Control-Providers.html.in
----------------------------------------------------------------------
diff --git 
a/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Managing-Access-Control-Providers.html.in
 
b/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Managing-Access-Control-Providers.html.in
new file mode 100644
index 0000000..6c02f32
--- /dev/null
+++ 
b/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Managing-Access-Control-Providers.html.in
@@ -0,0 +1,3 @@
+<div class="docbook"><div class="navheader"><table summary="Navigation header" 
width="100%"><tr><th align="center" colspan="3">7.15.&#160;Access Control 
Providers</th></tr><tr><td align="left" width="20%"><a accesskey="p" 
href="Java-Broker-Management-Managing-Group-Providers.html">Prev</a>&#160;</td><th
 align="center" width="60%">Chapter&#160;7.&#160;Managing Entities</th><td 
align="right" width="20%">&#160;<a accesskey="n" 
href="Java-Broker-Management-Managing-Plugin-HTTP.html">Next</a></td></tr></table><hr
 /></div><div class="section"><div class="titlepage"><div><div><h2 
class="title" style="clear: both"><a 
id="Java-Broker-Management-Managing-Access-Control-Providers"></a>7.15.&#160;Access
 Control Providers</h2></div></div></div><p>An <a class="link" 
href="Java-Broker-Concepts-Other-Services.html#Java-Broker-Concepts-Access-Control-Providers"
 title="4.10.1.&#160;Access Control Providers">Access Control
+            Provider</a> governs who may do what within the Broker. It governs 
both messaging and
+        management.</p><p>See <a class="xref" 
href="Java-Broker-Security-ACLs.html" title="8.3.&#160;Access Control 
Lists">Section&#160;8.3, &#8220;Access Control Lists&#8221;</a></p></div><div 
class="navfooter"><hr /><table summary="Navigation footer" width="100%"><tr><td 
align="left" width="40%"><a accesskey="p" 
href="Java-Broker-Management-Managing-Group-Providers.html">Prev</a>&#160;</td><td
 align="center" width="20%"><a accesskey="u" 
href="Java-Broker-Management-Managing-Entities.html">Up</a></td><td 
align="right" width="40%">&#160;<a accesskey="n" 
href="Java-Broker-Management-Managing-Plugin-HTTP.html">Next</a></td></tr><tr><td
 align="left" valign="top" width="40%">7.14.&#160;Group Providers&#160;</td><td 
align="center" width="20%"><a accesskey="h" 
href="AMQP-Messaging-Broker-Java-Book.html">Home</a></td><td align="right" 
valign="top" width="40%">&#160;7.16.&#160;HTTP 
Plugin</td></tr></table></div></div>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/32dce6b5/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Managing-Authentication-Providers.html.in
----------------------------------------------------------------------
diff --git 
a/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Managing-Authentication-Providers.html.in
 
b/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Managing-Authentication-Providers.html.in
new file mode 100644
index 0000000..b990c62
--- /dev/null
+++ 
b/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Managing-Authentication-Providers.html.in
@@ -0,0 +1,20 @@
+<div class="docbook"><div class="navheader"><table summary="Navigation header" 
width="100%"><tr><th align="center" colspan="3">7.11.&#160;Authentication 
Providers</th></tr><tr><td align="left" width="20%"><a accesskey="p" 
href="Java-Broker-Management-Managing-Ports.html">Prev</a>&#160;</td><th 
align="center" width="60%">Chapter&#160;7.&#160;Managing Entities</th><td 
align="right" width="20%">&#160;<a accesskey="n" 
href="Java-Broker-Management-Managing-Keystores.html">Next</a></td></tr></table><hr
 /></div><div class="section"><div class="titlepage"><div><div><h2 
class="title" style="clear: both"><a 
id="Java-Broker-Management-Managing-Authentication-Providers"></a>7.11.&#160;Authentication
 Providers</h2></div></div></div><p>
+        <a class="link" 
href="Java-Broker-Concepts-Authentication-Providers.html" 
title="4.9.&#160;Authentication Providers">Authentication
+            Providers</a> are used by <a class="link" 
href="Java-Broker-Concepts-Ports.html" title="4.8.&#160;Ports">Ports</a> to
+        authenticate connections.</p><p>See <a class="xref" 
href="Java-Broker-Security.html#Java-Broker-Security-Authentication-Providers" 
title="8.1.&#160;Authentication Providers">Section&#160;8.1, 
&#8220;Authentication Providers&#8221;</a></p><div class="section"><div 
class="titlepage"><div><div><h3 class="title"><a 
id="Java-Broker-Management-Managing-Authentication-Providers-Types"></a>7.11.1.&#160;Types</h3></div></div></div><p>
 The following authentication providers are supported:
+            </p><div class="itemizedlist"><ul class="itemizedlist" 
style="list-style-type: disc; "><li class="listitem"><p><a class="link" 
href="Java-Broker-Security.html#Java-Broker-Security-Anonymous-Provider" 
title="8.1.5.&#160;Anonymous">Anonymous</a>: allows anonymous connections to the
+                    Broker</p></li><li class="listitem"><p><a class="link" 
href="Java-Broker-Security.html#Java-Broker-Security-External-Provider" 
title="8.1.4.&#160;External (SSL Client Certificates)">External</a>: delegates 
to external mechanisms such as SSL Client
+                        Certificate Authentication</p></li><li 
class="listitem"><p><a class="link" 
href="Java-Broker-Security.html#Java-Broker-Security-Kerberos-Provider" 
title="8.1.2.&#160;Kerberos">Kerberos</a>: uses Kerberos to authenticate 
connections via
+                        GSS-API.</p></li><li class="listitem"><p><a 
class="link" 
href="Java-Broker-Security.html#Java-Broker-Security-LDAP-Provider" 
title="8.1.1.&#160;Simple LDAP">SimpleLDAP</a>: authenticate users against an 
LDAP
+                    server.</p></li><li class="listitem"><p><a class="link" 
href="Java-Broker-Security.html#Java-Broker-Security-OAuth2-Provider" 
title="8.1.3.&#160;OAuth2">OAuth2</a>: authenticate users against a OAuth2 
Authorization
+                    Server.</p></li><li class="listitem"><p><a class="link" 
href="Java-Broker-Security.html#Java-Broker-Security-ScramSha-Providers" 
title="8.1.6.&#160;SCRAM SHA">ScramSha</a>: authenticate users against 
credentials stored in a
+                        local database</p></li><li class="listitem"><p><a 
class="link" 
href="Java-Broker-Security.html#Java-Broker-Security-Plain-Provider" 
title="8.1.7.&#160;Plain">Plain</a>: authenticate users against credentials 
stored in a local
+                            database.</p></li><li class="listitem"><p><a 
class="link" 
href="Java-Broker-Security.html#Java-Broker-Security-PlainPasswordFile-Provider"
 title="8.1.8.&#160;Plain Password File (Deprecated)">PlainPasswordFile</a>: 
authenticate users against credentials stored
+                        in plain text in a local file.</p></li><li 
class="listitem"><p><a class="link" 
href="Java-Broker-Security.html#Java-Broker-Security-MD5-Provider" 
title="8.1.9.&#160;MD5 Provider">MD5</a>: authenticate users against credentials
+                        stored in a local database.</p></li><li 
class="listitem"><p><a class="link" 
href="Java-Broker-Security.html#Java-Broker-Security-Base64MD5PasswordFile-Provider"
 title="8.1.10.&#160;Base64MD5 Password File 
(Deprecated)">Base64MD5PasswordFile</a>: authenticate users against credentials
+                        stored encoded in a local file.</p></li></ul></div><p>
+            </p><p>The last five providers offer user management facilities 
too, that is, users can
+                be created, deleted and passwords reset.</p></div><div 
class="section"><div class="titlepage"><div><div><h3 class="title"><a 
id="Java-Broker-Management-Managing-Authentication-Providers-Attributes"></a>7.11.2.&#160;Attributes</h3></div></div></div><p>
+            </p><div class="itemizedlist"><ul class="itemizedlist" 
style="list-style-type: disc; "><li class="listitem"><p><span 
class="emphasis"><em>Name the authentication 
provider</em></span>.</p></li></ul></div><p>
+        </p><p>Other attributes are provider specific.</p></div><div 
class="section"><div class="titlepage"><div><div><h3 class="title"><a 
id="Java-Broker-Management-Managing-Authentication-Providers-Children"></a>7.11.3.&#160;Children</h3></div></div></div><p>None</p></div><div
 class="section"><div class="titlepage"><div><div><h3 class="title"><a 
id="Java-Broker-Management-Managing-Authentication-Providers-Lifecycle"></a>7.11.4.&#160;Lifecycle</h3></div></div></div><p>Not
 supported</p><div class="important" style="margin-left: 0.5in; margin-right: 
0.5in;"><h3 class="title">Important</h3><p>When updating an existing 
authentication provider, changes become effective until
+                the Broker is restarted.</p></div></div></div><div 
class="navfooter"><hr /><table summary="Navigation footer" width="100%"><tr><td 
align="left" width="40%"><a accesskey="p" 
href="Java-Broker-Management-Managing-Ports.html">Prev</a>&#160;</td><td 
align="center" width="20%"><a accesskey="u" 
href="Java-Broker-Management-Managing-Entities.html">Up</a></td><td 
align="right" width="40%">&#160;<a accesskey="n" 
href="Java-Broker-Management-Managing-Keystores.html">Next</a></td></tr><tr><td 
align="left" valign="top" width="40%">7.10.&#160;Ports&#160;</td><td 
align="center" width="20%"><a accesskey="h" 
href="AMQP-Messaging-Broker-Java-Book.html">Home</a></td><td align="right" 
valign="top" 
width="40%">&#160;7.12.&#160;Keystores</td></tr></table></div></div>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/32dce6b5/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Managing-Broker.html.in
----------------------------------------------------------------------
diff --git 
a/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Managing-Broker.html.in
 
b/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Managing-Broker.html.in
new file mode 100644
index 0000000..8148c2f
--- /dev/null
+++ 
b/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Managing-Broker.html.in
@@ -0,0 +1,28 @@
+<div class="docbook"><div class="navheader"><table summary="Navigation header" 
width="100%"><tr><th align="center" 
colspan="3">7.3.&#160;Broker</th></tr><tr><td align="left" width="20%"><a 
accesskey="p" 
href="Java-Broker-Management-Managing-Entities-Matrix.html">Prev</a>&#160;</td><th
 align="center" width="60%">Chapter&#160;7.&#160;Managing Entities</th><td 
align="right" width="20%">&#160;<a accesskey="n" 
href="Java-Broker-Management-Managing-Virtualhost-Nodes.html">Next</a></td></tr></table><hr
 /></div><div class="section"><div class="titlepage"><div><div><h2 
class="title" style="clear: both"><a 
id="Java-Broker-Management-Managing-Broker"></a>7.3.&#160;Broker</h2></div></div></div><p>The
 <a class="link" href="Java-Broker-Concepts-Broker.html" 
title="4.2.&#160;Broker">Broker</a> is the principal entity. It is
+    composed of a number of other entities that collaborate to provide message 
broker
+    facilities.</p><p>The Broker can only be managed via the HTTP management 
channel.</p><div class="section"><div class="titlepage"><div><div><h3 
class="title"><a 
id="Java-Broker-Management-Managing-Broker-Attributes"></a>7.3.1.&#160;Attributes</h3></div></div></div><p>
+      </p><div class="itemizedlist"><ul class="itemizedlist" 
style="list-style-type: disc; "><li class="listitem"><p><span 
class="emphasis"><em>Name the Broker</em></span>. This helps distinguish 
between Brokers in
+            environments that have many.</p></li><li class="listitem"><p><span 
class="emphasis"><em>Heartbeating</em></span>. Enables heartbeats between 
Broker and Clients.
+            Heartbeats help discover severed TCP/IP connections in a timely 
manner.</p></li><li class="listitem"><p><span class="emphasis"><em>Confidential 
configuration encryption provider</em></span>. The name of the
+            provider used to encrypt passwords and other secrets within the 
configuration. See <a class="xref" 
href="Java-Broker-Security-Configuration-Encryption.html" 
title="8.4.&#160;Configuration Encryption">Section&#160;8.4, 
&#8220;Configuration Encryption&#8221;</a>.</p></li></ul></div><p>
+    </p></div><div class="section"><div class="titlepage"><div><div><h3 
class="title"><a 
id="Java-Broker-Management-Managing-Broker-Context"></a>7.3.2.&#160;Context</h3></div></div></div><p>
+      </p><div class="itemizedlist"><ul class="itemizedlist" 
style="list-style-type: disc; "><li class="listitem"><p><span 
class="emphasis"><em>broker.flowToDiskThreshold</em></span> Controls the <a 
class="link" href="Java-Broker-Runtime-Flow-To-Disk.html" title="9.6.&#160;Flow 
to Disk">flow to disk</a> feature.</p></li><li class="listitem"><p><span 
class="emphasis"><em>broker.messageCompressionEnabled</em></span> Controls the 
<a class="link" href="Java-Broker-Runtime-Message-Compression.html" 
title="9.9.&#160;Message Compression">message compression</a> .</p></li><li 
class="listitem"><p><a 
id="Java-Broker-Management-Managing-Broker-Context-StoreFilesystemMaxUsagePercent"></a><span
 class="emphasis"><em>store.filesystem.maxUsagePercent</em></span> Maximum 
percentage of space
+            that may be utilised on a filesystem hosting a virtualhost's 
message store before
+            producer flow control is automatically imposed.</p><p>This 
defaults to 90%.</p></li><li class="listitem"><p><a 
id="Java-Broker-Management-Managing-Broker-Context-BrokerDefaultSupportedProtocolVersionReply"></a><span
 
class="emphasis"><em>qpid.broker_default_supported_protocol_version_reply</em></span>
 Used
+            during protocol negotiation. If set, the Broker will offer this 
AMQP version to a client
+            requesting an AMQP protocol that is not supported by the Broker. 
If not set, the Broker
+            offers the highest protocol version it supports. </p></li><li 
class="listitem"><p>
+            <span class="emphasis"><em>qpid.broker_msg_auth</em></span> If set 
true, the Broker ensures that the user
+            id of each received message matches the user id of the producing 
connection. If this
+            check fails, the message is returned to the producer's connection 
with a 403 (Access
+            Refused) error code.</p><p>This value can be overridden for each 
Virtual Host by setting the context value on the Virtual Host or
+            Virtual Host Node.
+          </p><p>Defaults to false.</p></li></ul></div><p>
+    </p></div><div class="section"><div class="titlepage"><div><div><h3 
class="title"><a 
id="Java-Broker-Management-Managing-Broker-Children"></a>7.3.3.&#160;Children</h3></div></div></div><p>
+      </p><div class="itemizedlist"><ul class="itemizedlist" 
style="list-style-type: disc; "><li class="listitem"><p>
+            <a class="link" 
href="Java-Broker-Management-Managing-Virtualhost-Nodes.html" 
title="7.4.&#160;Virtualhost Nodes">Virtualhost
+              nodes</a>
+          </p></li><li class="listitem"><p>
+            <a class="link" href="Java-Broker-Management-Managing-Ports.html" 
title="7.10.&#160;Ports">Ports</a>
+          </p></li><li class="listitem"><p>Authentication 
Providers</p></li><li class="listitem"><p>Key Stores / Trust Stores</p></li><li 
class="listitem"><p>Group Providers</p></li><li class="listitem"><p>Access 
Control Providers</p></li></ul></div><p>
+    </p></div><div class="section"><div class="titlepage"><div><div><h3 
class="title"><a 
id="Java-Broker-Management-Managing-Broker-Lifecycle"></a>7.3.4.&#160;Lifecycle</h3></div></div></div><p>Not
 supported</p></div></div><div class="navfooter"><hr /><table 
summary="Navigation footer" width="100%"><tr><td align="left" width="40%"><a 
accesskey="p" 
href="Java-Broker-Management-Managing-Entities-Matrix.html">Prev</a>&#160;</td><td
 align="center" width="20%"><a accesskey="u" 
href="Java-Broker-Management-Managing-Entities.html">Up</a></td><td 
align="right" width="40%">&#160;<a accesskey="n" 
href="Java-Broker-Management-Managing-Virtualhost-Nodes.html">Next</a></td></tr><tr><td
 align="left" valign="top" width="40%">7.2.&#160;Entity/Management Channel 
Support Matrix&#160;</td><td align="center" width="20%"><a accesskey="h" 
href="AMQP-Messaging-Broker-Java-Book.html">Home</a></td><td align="right" 
valign="top" width="40%">&#160;7.4.&#160;Virtualhost 
Nodes</td></tr></table></div></div>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/32dce6b5/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Managing-Consumers.html.in
----------------------------------------------------------------------
diff --git 
a/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Managing-Consumers.html.in
 
b/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Managing-Consumers.html.in
new file mode 100644
index 0000000..a0ad421
--- /dev/null
+++ 
b/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Managing-Consumers.html.in
@@ -0,0 +1,8 @@
+<div class="docbook"><div class="navheader"><table summary="Navigation header" 
width="100%"><tr><th align="center" 
colspan="3">7.9.&#160;Consumers</th></tr><tr><td align="left" width="20%"><a 
accesskey="p" 
href="Java-Broker-Management-Managing-Queues.html">Prev</a>&#160;</td><th 
align="center" width="60%">Chapter&#160;7.&#160;Managing Entities</th><td 
align="right" width="20%">&#160;<a accesskey="n" 
href="Java-Broker-Management-Managing-Ports.html">Next</a></td></tr></table><hr 
/></div><div class="section"><div class="titlepage"><div><div><h2 class="title" 
style="clear: both"><a 
id="Java-Broker-Management-Managing-Consumers"></a>7.9.&#160;Consumers</h2></div></div></div><p>A
 Consumer represents an application's live <span 
class="emphasis"><em>subcription</em></span> to a queue.  Its presence
+    in the model indicates that an application is currently connected to the 
queue <span class="emphasis"><em>at this moment</em></span>.
+  </p><div class="section"><div class="titlepage"><div><div><h3 
class="title"><a 
id="Java-Broker-Management-Managing-Consumers-Context"></a>7.9.1.&#160;Context</h3></div></div></div><p>
+      </p><div class="itemizedlist"><ul class="itemizedlist" 
style="list-style-type: disc; "><li class="listitem"><p><span 
class="emphasis"><em>consumer.suspendNotificationPeriod</em></span> Governs the 
length of
+           time that a consumer may remain suspended before the the Broker 
begins to
+           produce <a class="link" 
href="Java-Broker-Appendix-Operation-Logging.html#Java-Broker-Appendix-Operation-Logging-Message-SUB-1003">SUB-1003</a>
+            operational log messages.</p></li></ul></div><p>
+    </p></div></div><div class="navfooter"><hr /><table summary="Navigation 
footer" width="100%"><tr><td align="left" width="40%"><a accesskey="p" 
href="Java-Broker-Management-Managing-Queues.html">Prev</a>&#160;</td><td 
align="center" width="20%"><a accesskey="u" 
href="Java-Broker-Management-Managing-Entities.html">Up</a></td><td 
align="right" width="40%">&#160;<a accesskey="n" 
href="Java-Broker-Management-Managing-Ports.html">Next</a></td></tr><tr><td 
align="left" valign="top" width="40%">7.8.&#160;Queues&#160;</td><td 
align="center" width="20%"><a accesskey="h" 
href="AMQP-Messaging-Broker-Java-Book.html">Home</a></td><td align="right" 
valign="top" width="40%">&#160;7.10.&#160;Ports</td></tr></table></div></div>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/32dce6b5/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Managing-Entities-Matrix.html.in
----------------------------------------------------------------------
diff --git 
a/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Managing-Entities-Matrix.html.in
 
b/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Managing-Entities-Matrix.html.in
new file mode 100644
index 0000000..b6002cd
--- /dev/null
+++ 
b/input/releases/qpid-broker-j-master/java-broker/book/Java-Broker-Management-Managing-Entities-Matrix.html.in
@@ -0,0 +1,2 @@
+<div class="docbook"><div class="navheader"><table summary="Navigation header" 
width="100%"><tr><th align="center" colspan="3">7.2.&#160;Entity/Management 
Channel Support Matrix</th></tr><tr><td align="left" width="20%"><a 
accesskey="p" 
href="Java-Broker-Management-Managing-Entities.html">Prev</a>&#160;</td><th 
align="center" width="60%">Chapter&#160;7.&#160;Managing Entities</th><td 
align="right" width="20%">&#160;<a accesskey="n" 
href="Java-Broker-Management-Managing-Broker.html">Next</a></td></tr></table><hr
 /></div><div class="section"><div class="titlepage"><div><div><h2 
class="title" style="clear: both"><a 
id="Java-Broker-Management-Managing-Entities-Matrix"></a>7.2.&#160;Entity/Management
 Channel Support Matrix</h2></div></div></div><p>This tables indicates which 
management channels support the creation (C), update (U), or
+    deletion (D) of different entities within the Broker.</p><div 
class="table"><a id="d0e2899"></a><p 
class="title"><strong>Table&#160;7.1.&#160;Entity/Management 
Matrix</strong></p><div class="table-contents"><table border="1" 
summary="Entity/Management Matrix"><colgroup><col align="left" class="entity" 
/><col align="left" class="http" /><col align="left" class="amqp" /><col 
/></colgroup><thead><tr><th align="left">Entity</th><th 
align="left">HTTP</th><th align="left">AMQP</th><td 
class="auto-generated">&#160;</td></tr></thead><tbody><tr><td 
align="left">Broker</td><td align="left">U</td><td align="left">No</td><td 
class="auto-generated">&#160;</td></tr><tr><td align="left">Virtualhost 
Node</td><td align="left">C/U/D</td><td align="left">No</td><td 
class="auto-generated">&#160;</td></tr><tr><td align="left">Virtualhost</td><td 
align="left">C/U/D</td><td align="left">No</td><td 
class="auto-generated">&#160;</td></tr><tr><td align="left">Remote Replication 
Node</td><td align="left">
 U/D</td><td align="left">No</td><td 
class="auto-generated">&#160;</td></tr><tr><td align="left">Exchange</td><td 
align="left">C/D</td><td align="left">C/D</td><td 
class="auto-generated">&#160;</td></tr><tr><td align="left">Queue</td><td 
align="left">C/D</td><td align="left">C/D</td><td 
class="auto-generated">&#160;</td></tr><tr><td align="left">Binding</td><td 
align="left">C/D</td><td align="left">C/D</td><td 
class="auto-generated">&#160;</td></tr><tr><td align="left">Port</td><td 
align="left">C/U/D</td><td align="left">No</td><td 
class="auto-generated">&#160;</td></tr><tr><td align="left">Authentication 
Providers</td><td align="left">C/U/D</td><td align="left">No</td><td 
class="auto-generated">&#160;</td></tr><tr><td align="left">Group 
Providers</td><td align="left">C//D</td><td align="left">No</td><td 
class="auto-generated">&#160;</td></tr><tr><td align="left">Access Control 
Provider</td><td align="left">C//D</td><td align="left">No</td><td 
class="auto-generated">&#160;</td></tr><
 tr><td align="left">Keystores</td><td align="left">C//D</td><td 
align="left">No</td><td class="auto-generated">&#160;</td></tr><tr><td 
align="left">Truststores</td><td align="left">C//D</td><td 
align="left">No</td><td class="auto-generated">&#160;</td></tr><tr><td 
align="left">Users</td><td align="left">C//D</td><td align="left">No</td><td 
class="auto-generated">&#160;</td></tr><tr><td align="left">Groups</td><td 
align="left">C//D</td><td align="left">No</td><td 
class="auto-generated">&#160;</td></tr><tr><td align="left">Loggers</td><td 
align="left">C/U/D</td><td align="left">No</td><td 
class="auto-generated">&#160;</td></tr></tbody></table></div></div><br 
class="table-break" /><div class="important" style="margin-left: 0.5in; 
margin-right: 0.5in;"><h3 class="title">Note</h3><p>It is currently only 
possible to modify a entity's context using the HTTP 
channel.</p></div></div><div class="navfooter"><hr /><table summary="Navigation 
footer" width="100%"><tr><td align="left" width="40%">
 <a accesskey="p" 
href="Java-Broker-Management-Managing-Entities.html">Prev</a>&#160;</td><td 
align="center" width="20%"><a accesskey="u" 
href="Java-Broker-Management-Managing-Entities.html">Up</a></td><td 
align="right" width="40%">&#160;<a accesskey="n" 
href="Java-Broker-Management-Managing-Broker.html">Next</a></td></tr><tr><td 
align="left" valign="top" width="40%">Chapter&#160;7.&#160;Managing 
Entities&#160;</td><td align="center" width="20%"><a accesskey="h" 
href="AMQP-Messaging-Broker-Java-Book.html">Home</a></td><td align="right" 
valign="top" width="40%">&#160;7.3.&#160;Broker</td></tr></table></div></div>
\ No newline at end of file


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org

Reply via email to