Copied: qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Security-ACLs.xml (from r1394457, qpid/trunk/qpid/doc/book/src/java-broker/Configure-ACLs.xml) URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Security-ACLs.xml?p2=qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Security-ACLs.xml&p1=qpid/trunk/qpid/doc/book/src/java-broker/Configure-ACLs.xml&r1=1394457&r2=1394629&rev=1394629&view=diff ============================================================================== --- qpid/trunk/qpid/doc/book/src/java-broker/Configure-ACLs.xml (original) +++ qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Security-ACLs.xml Fri Oct 5 16:38:51 2012 @@ -21,10 +21,8 @@ --> -<section id="Configuring-ACLS"> - <title> - Configuring ACLs - </title> +<section id="Java-Broker-Security-ACLs"> + <title>Access Control Lists</title> <para> In Qpid, Access Control Lists (ACLs) specify which actions can be performed by each authenticated user. To enable, the <acl/> element is used within the <security/> element of the configuration XML. @@ -34,7 +32,7 @@ </para> - <section role="h3" id="ConfigureACLs-EnablingACL"> + <section role="h3" id="Java-Broker-Security-ACLs-EnablingACL"> <title> Enabling ACLs </title> @@ -75,13 +73,13 @@ </programlisting> </section> - <section role="h3" id="ConfigureACLs-WriteACL"> + <section role="h3" id="Java-Broker-Security-ACLs-WriteACL"> <title> Writing .acl files </title> <para> - The ACL file consists of a series of rules associating behaviour for a user or group. Use of groups can serve to make the ACL file more concise. See <link linkend="Configuring-Group-Providers">Configuring Group Providers</link> for more information on defining groups. + The ACL file consists of a series of rules associating behaviour for a user or group. Use of groups can serve to make the ACL file more concise. See <link linkend="Java-Broker-Security-Group-Providers">Configuring Group Providers</link> for more information on defining groups. </para> <para> Each ACL rule grants or denies a particular action on an object to a user/group. The rule may be augmented with one or more properties, restricting @@ -126,7 +124,7 @@ </para> </section> - <section role="h4" id="ConfigureACLs-Syntax"> + <section role="h4" id="Java-Broker-Security-ACLs-Syntax"> <title> Syntax </title> @@ -148,8 +146,8 @@ ALL ALL # A broken line </programlisting> </section> - <table id="tabl-ConfigureACLs-Syntax_permissions"> - <title>ACL Rules: permission</title> + <table id="table-Java-Broker-Security-ACLs-Syntax_permissions"> + <title>List of ACL permission</title> <tgroup cols="2"> <tbody> <row> @@ -171,8 +169,8 @@ </tbody> </tgroup> </table> - <table id="tabl-ConfigureACLs-Syntax_actions"> - <title>ACL Rules:action</title> + <table id="table-Java-Broker-Security-ACLs-Syntax_actions"> + <title>List of ACL actions</title> <tgroup cols="2"> <tbody> <row> @@ -214,8 +212,8 @@ </tbody> </tgroup> </table> - <table id="tabl-ConfigureACLs-Syntax_objects"> - <title>ACL Rules:object</title> + <table id="table-Java-Broker-Security-ACLs-Syntax_objects"> + <title>List of ACL objects</title> <tgroup cols="2"> <tbody> <row> @@ -257,8 +255,8 @@ </tbody> </tgroup> </table> - <table id="tabl-ConfigureACLs-Syntax_properties"> - <title>ACL Rules:property</title> + <table id="table-Java-Broker-Security-ACLs-Syntax_properties"> + <title>List of ACL properties</title> <tgroup cols="2"> <tbody> <row> @@ -368,8 +366,8 @@ </tbody> </tgroup> </table> - <table id="tabl-ConfigureACLs-Syntax_javacomponents"> - <title>ACL rules:components (Java Broker only)</title> + <table id="table-Java-Broker-Security-ACLs-Syntax_javacomponents"> + <title>List of ACL rules</title> <tgroup cols="3"> <tbody> <row> @@ -407,7 +405,7 @@ </tbody> </tgroup> </table> - <section role="h4" id="ConfigureACLs-WorkedExamples"> + <section role="h4" id="Java-Broker-Security-ACLs-WorkedExamples"> <title> Worked Examples </title> @@ -415,7 +413,7 @@ Here are some example ACLs illustrating common use cases. In addition, note that the Java broker provides a complete example ACL file, located at etc/broker_example.acl. </para> - <section role="h4" id="ConfigureACLs-WorkedExample1"> + <section role="h4" id="Java-Broker-Security-ACLs-WorkedExample1"> <title> Worked example 1 - Management rights </title> @@ -439,13 +437,13 @@ ACL ALLOW readonly ACCESS ALL ACL DENY-LOG ALL ALL </programlisting> </section> - <section role="h4" id="ConfigureACLs-WorkedExample2"> + <section role="h4" id="Java-Broker-Security-ACLs-WorkedExample2"> <title> Worked example 2 - User maintainer group </title> <para> Suppose you wish to restrict User Management operations to users belonging to a - <link linkend="Configuring-Group-Providers">group</link> 'usermaint'. No other user + <link linkend="Java-Broker-Security-Group-Providers">group</link> 'usermaint'. No other user is allowed to perform user maintainence This example illustrates the permissioning of an individual component. </para> <programlisting> @@ -462,7 +460,7 @@ ACL DENY ALL ALL USER ACL DENY-LOG ALL ALL </programlisting> </section> - <section role="h4" id="ConfigureACLs-WorkedExample3"> + <section role="h4" id="Java-Broker-Security-ACLs-WorkedExample3"> <title> Worked example 3 - Request/Response messaging </title> @@ -498,7 +496,7 @@ ACL ALLOW server PUBLISH EXCHANGE name=" ACL DENY-LOG all all </programlisting> </section> - <section role="h4" id="ConfigureACLs-WorkedExample4"> + <section role="h4" id="Java-Broker-Security-ACLs-WorkedExample4"> <title> Worked example 4 - firewall-like access control </title>
Copied: qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Security-Authentication-Providers.xml (from r1394457, qpid/trunk/qpid/doc/book/src/java-broker/Configure-AuthenticationProviders.xml) URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Security-Authentication-Providers.xml?p2=qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Security-Authentication-Providers.xml&p1=qpid/trunk/qpid/doc/book/src/java-broker/Configure-AuthenticationProviders.xml&r1=1394457&r2=1394629&rev=1394629&view=diff ============================================================================== --- qpid/trunk/qpid/doc/book/src/java-broker/Configure-AuthenticationProviders.xml (original) +++ qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Security-Authentication-Providers.xml Fri Oct 5 16:38:51 2012 @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <!-- - + 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 @@ -9,28 +9,28 @@ 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. - + --> -<section id="Configuring-Authentication-Mechanisms"> - <title>Configuring Authentication Mechanisms</title> +<section id="Java-Broker-Security-Authentication-Providers"> + <title>Authentication Providers</title> <para> In order to successfully establish a connection to the Java Broker, the connection must be - authenticated. The Java Broker supports a number of different authentication schemesi, each + authenticated. The Java Broker supports a number of different authentication schemes, each with its own "authentication manager". Different managers may be used on different ports. Each manager has its own configuration element, the presence of which within the - <security> section denotes the use of that authentication mechanism. Where only one + <security> section denotes the use of that authentication provider. Where only one such manager is configured, that manager will be used on all ports (including JMX). Where - more than one authentication manager is configured the configuration must define which + more than one authentication manager is configured the configuration must define which manager is the "default", and (if required) the mapping of non-default authentication managers to other ports. </para> @@ -39,46 +39,52 @@ the default (e.g. for the JMX port), Kerberos on port 5672 and Anonymous on 5673. </para> - <programlisting><![CDATA[ - <security> - <pd-auth-manager> - <principal-database> - <class>org.apache.qpid.server.security.auth.database.PlainPasswordFilePrincipalDatabase</class> - <attributes> - <attribute> - <name>passwordFile</name> - <value>${conf}/passwd</value> - </attribute> - </attributes> - </principal-database> - </pd-auth-manager> - <kerberos-auth-manager><auth-name>sib</auth-name></kerberos-auth-manager> - <anonymous-auth-manager></anonymous-auth-manager> - <default-auth-manager>PrincipalDatabaseAuthenticationManager</default-auth-manager> - <port-mappings> - <port-mapping> - <port>5672</port> - <auth-manager>KerberosAuthenticationManager</auth-manager> - </port-mapping> - <port-mapping> - <port>5673</port> - <auth-manager>AnonymousAuthenticationManager</auth-manager> - </port-mapping> - </port-mappings> - </security>]]> - </programlisting> + <example> + <title>Configuring different authentication schemes on different ports</title> + <programlisting><![CDATA[ +<security> + <pd-auth-manager> + <principal-database> + <class>org.apache.qpid.server.security.auth.database.PlainPasswordFilePrincipalDatabase</class> + <attributes> + <attribute> + <name>passwordFile</name> + <value>${conf}/passwd</value> + </attribute> + </attributes> + </principal-database> + </pd-auth-manager> + <kerberos-auth-manager><auth-name>sib</auth-name></kerberos-auth-manager> + <anonymous-auth-manager></anonymous-auth-manager> + <default-auth-manager>PrincipalDatabaseAuthenticationManager</default-auth-manager> + <port-mappings> + <port-mapping> + <port>5672</port> + <auth-manager>KerberosAuthenticationManager</auth-manager> + </port-mapping> + <port-mapping> + <port>5673</port> + <auth-manager>AnonymousAuthenticationManager</auth-manager> + </port-mapping> + </port-mappings> +</security>]]> + </programlisting> + </example> <section><title>Password File</title></section> <section><title>LDAP</title> - <programlisting><![CDATA[ - <security> - <simple-ldap-auth-manager> - <provider-url>ldaps://example.com:636/</provider-url> - <search-context>dc=example\,dc=com</search-context> - <search-filter>(uid={0})</search-filter> - </simple-ldap-auth-manager> - </security>]]> - </programlisting> + <example> + <title>Configuring a LDAP authentication</title> + <programlisting><![CDATA[ +<security> + <simple-ldap-auth-manager> + <provider-url>ldaps://example.com:636/</provider-url> + <search-context>dc=example\,dc=com</search-context> + <search-filter>(uid={0})</search-filter> + </simple-ldap-auth-manager> +</security>]]> + </programlisting> + </example> <para> The authentication manager first connects to the ldap server anonymously and searches for the @@ -121,29 +127,32 @@ configuration, and use this for other ports: </para> - <programlisting><![CDATA[ - <security> - <pd-auth-manager> - <principal-database> - <class>org.apache.qpid.server.security.auth.database.PlainPasswordFilePrincipalDatabase</class> - <attributes> - <attribute> - <name>passwordFile</name> - <value>${conf}/passwd</value> - </attribute> - </attributes> - </principal-database> - </pd-auth-manager> - <kerberos-auth-manager><auth-name>sib</auth-name></kerberos-auth-manager> - <default-auth-manager>PrincipalDatabaseAuthenticationManager</default-auth-manager> - <port-mappings> - <port-mapping> - <port>5672</port> - <auth-manager>KerberosAuthenticationManager</auth-manager> - </port-mapping> - </port-mappings> - </security>]]> - </programlisting> + <example> + <title>Configuring a Kerberos authentication</title> + <programlisting><![CDATA[ +<security> + <pd-auth-manager> + <principal-database> + <class>org.apache.qpid.server.security.auth.database.PlainPasswordFilePrincipalDatabase</class> + <attributes> + <attribute> + <name>passwordFile</name> + <value>${conf}/passwd</value> + </attribute> + </attributes> + </principal-database> + </pd-auth-manager> + <kerberos-auth-manager></kerberos-auth-manager> + <default-auth-manager>PrincipalDatabaseAuthenticationManager</default-auth-manager> + <port-mappings> + <port-mapping> + <port>5672</port> + <auth-manager>KerberosAuthenticationManager</auth-manager> + </port-mapping> + </port-mappings> +</security>]]> + </programlisting> + </example> <para> Configuration of kerberos is done through system properties (there doesn't seem to be a way Copied: qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Security-Group-Providers.xml (from r1394457, qpid/trunk/qpid/doc/book/src/java-broker/Configure-Group-Providers.xml) URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Security-Group-Providers.xml?p2=qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Security-Group-Providers.xml&p1=qpid/trunk/qpid/doc/book/src/java-broker/Configure-Group-Providers.xml&r1=1394457&r2=1394629&rev=1394629&view=diff ============================================================================== --- qpid/trunk/qpid/doc/book/src/java-broker/Configure-Group-Providers.xml (original) +++ qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Security-Group-Providers.xml Fri Oct 5 16:38:51 2012 @@ -21,10 +21,10 @@ --> -<section id="Configuring-Group-Providers"> +<section id="Java-Broker-Security-Group-Providers"> <title>Configuring Group Providers</title> <para> - The Java broker utilises GroupProviders to allow assigning users to groups for use in <link linkend="Configuring-ACLS">ACLs</link>. Following authentication by a given <link linkend="Configuring-Authentication-Mechanisms">Authentication Provider</link>, the configured Group Providers are consulted to allowing assignment of GroupPrincipals for a given authenticated user. + The Java broker utilises GroupProviders to allow assigning users to groups for use in <link linkend="Java-Broker-Security-ACLs">ACLs</link>. Following authentication by a given <link linkend="Java-Broker-Security-Authentication-Providers">Authentication Provider</link>, the configured Group Providers are consulted to allowing assignment of GroupPrincipals for a given authenticated user. </para> Added: qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Security-SSL.xml URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Security-SSL.xml?rev=1394629&view=auto ============================================================================== --- qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Security-SSL.xml (added) +++ qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Security-SSL.xml Fri Oct 5 16:38:51 2012 @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + + 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. + +--> + +<section id="Java-Broker-Security-SSL"> +<title>SSL</title> + +</section> Added: qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Security-Users-And-Groups.xml URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Security-Users-And-Groups.xml?rev=1394629&view=auto ============================================================================== --- qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Security-Users-And-Groups.xml (added) +++ qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Security-Users-And-Groups.xml Fri Oct 5 16:38:51 2012 @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + + 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. + +--> + +<section id="Java-Broker-Security-Users-And-Groups"> +<title>Users And Groups</title> + +</section> Added: qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Security.xml URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Security.xml?rev=1394629&view=auto ============================================================================== --- qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Security.xml (added) +++ qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Security.xml Fri Oct 5 16:38:51 2012 @@ -0,0 +1,30 @@ +<?xml version="1.0"?> +<!-- + + 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. + +--> + +<chapter id="Java-Broker-Security"> + <title>Security</title> + <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Java-Broker-Security-Users-And-Groups.xml"/> + <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Java-Broker-Security-Group-Providers.xml"/> + <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Java-Broker-Security-Authentication-Providers.xml"/> + <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Java-Broker-Security-ACLs.xml"/> + <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Java-Broker-Security-SSL.xml"/> +</chapter> Added: qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Stores-BDB-Store.xml URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Stores-BDB-Store.xml?rev=1394629&view=auto ============================================================================== --- qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Stores-BDB-Store.xml (added) +++ qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Stores-BDB-Store.xml Fri Oct 5 16:38:51 2012 @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + + 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. + +--> + +<section id="Java-Broker-Stores-BDB-Store"> +<title>BDB Store</title> + +</section> Added: qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Stores-Derby-Store.xml URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Stores-Derby-Store.xml?rev=1394629&view=auto ============================================================================== --- qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Stores-Derby-Store.xml (added) +++ qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Stores-Derby-Store.xml Fri Oct 5 16:38:51 2012 @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + + 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. + +--> + +<section id="Java-Broker-Stores-Derby-Store"> +<title>Derby Store</title> + +</section> Added: qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Stores-HA-BDB-Store.xml URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Stores-HA-BDB-Store.xml?rev=1394629&view=auto ============================================================================== --- qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Stores-HA-BDB-Store.xml (added) +++ qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Stores-HA-BDB-Store.xml Fri Oct 5 16:38:51 2012 @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + + 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. + +--> + +<section id="Java-Broker-Stores-HA-BDB-Store"> +<title>High Availability BDB Store</title> + +</section> Added: qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Stores-Memory-Store.xml URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Stores-Memory-Store.xml?rev=1394629&view=auto ============================================================================== --- qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Stores-Memory-Store.xml (added) +++ qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Stores-Memory-Store.xml Fri Oct 5 16:38:51 2012 @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + + 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. + +--> + +<section id="Java-Broker-Stores-Memory-Store"> +<title>Memory Store</title> + +</section> Added: qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Stores-SQL-Store.xml URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Stores-SQL-Store.xml?rev=1394629&view=auto ============================================================================== --- qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Stores-SQL-Store.xml (added) +++ qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Stores-SQL-Store.xml Fri Oct 5 16:38:51 2012 @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + + 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. + +--> + +<section id="Java-Broker-Stores-SQL-Store"> +<title>SQL Store</title> + +</section> Added: qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Stores.xml URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Stores.xml?rev=1394629&view=auto ============================================================================== --- qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Stores.xml (added) +++ qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Stores.xml Fri Oct 5 16:38:51 2012 @@ -0,0 +1,30 @@ +<?xml version="1.0"?> +<!-- + + 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. + +--> + +<chapter id="Java-Broker-Stores"> + <title>Stores</title> + <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Java-Broker-Stores-Memory-Store.xml"/> + <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Java-Broker-Stores-Derby-Store.xml"/> + <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Java-Broker-Stores-SQL-Store.xml"/> + <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Java-Broker-Stores-BDB-Store.xml"/> + <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Java-Broker-Stores-HA-BDB-Store.xml"/> +</chapter> Added: qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Virtual-Hosts.xml URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Virtual-Hosts.xml?rev=1394629&view=auto ============================================================================== --- qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Virtual-Hosts.xml (added) +++ qpid/trunk/qpid/doc/book/src/java-broker/Java-Broker-Virtual-Hosts.xml Fri Oct 5 16:38:51 2012 @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + + 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. + +--> + +<chapter id="Java-Broker-Virtual-Hosts"> + <title>Virtual Hosts</title> +</chapter> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
