Skip to content

Commit

Permalink
NO-JIRA Updating activemq.org links
Browse files Browse the repository at this point in the history
  • Loading branch information
clebertsuconic committed Dec 20, 2021
1 parent 46d1fa6 commit 4e52758
Show file tree
Hide file tree
Showing 39 changed files with 41 additions and 41 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
~ limitations under the License.
-->

<broker xmlns="http://activemq.org/schema">
<broker xmlns="http://activemq.apache.org/schema">

${security-manager-settings}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<management-context xmlns="http://activemq.org/schema">
<management-context xmlns="http://activemq.apache.org/schema">
<!--<connector connector-port="1099"/>-->
<authorisation>
<allowlist>
Expand Down
2 changes: 1 addition & 1 deletion artemis-dto/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
<mkdir dir="${project.build.directory}/schema/org.apache.activemq/dto" />
<echo message="Generating XSD to: ${project.build.directory}/schema/org.apache.activemq/dto" />
<schemagen srcdir="${basedir}/src" destdir="${project.build.directory}/schema/org.apache.activemq/dto" includeantruntime="false">
<schema namespace="http://activemq.org/schema" file="activemq.xsd" />
<schema namespace="http://activemq.apache.org/schema" file="activemq.xsd" />
<classpath refid="maven.compile.classpath" />
<include name="**/package-info.java" />
<include name="**/*DTO.java" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
* The JAXB POJOs for the XML configuration of ActiveMQ Artemis broker
*/
@javax.xml.bind.annotation.XmlSchema(
namespace = "http://activemq.org/schema",
namespace = "http://activemq.apache.org/schema",
elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
package org.apache.activemq.artemis.dto;
2 changes: 1 addition & 1 deletion artemis-web/src/test/resources/bootstrap_secure_web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
~ limitations under the License.
-->

<broker xmlns="http://activemq.org/schema">
<broker xmlns="http://activemq.apache.org/schema">

<jaas-security domain="activemq"/>

Expand Down
2 changes: 1 addition & 1 deletion artemis-web/src/test/resources/bootstrap_web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
~ limitations under the License.
-->

<broker xmlns="http://activemq.org/schema">
<broker xmlns="http://activemq.apache.org/schema">

<jaas-security domain="activemq"/>

Expand Down
2 changes: 1 addition & 1 deletion artemis-web/src/test/resources/bootstrap_web_codec.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
~ limitations under the License.
-->

<broker xmlns="http://activemq.org/schema">
<broker xmlns="http://activemq.apache.org/schema">

<jaas-security domain="activemq"/>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
~ limitations under the License.
-->

<broker xmlns="http://activemq.org/schema">
<broker xmlns="http://activemq.apache.org/schema">

<jaas-security domain="activemq"/>

Expand Down
6 changes: 3 additions & 3 deletions docs/user-manual/en/security.md
Original file line number Diff line number Diff line change
Expand Up @@ -1256,7 +1256,7 @@ either:
Here's an example of the single bootstrap user configuration:

```xml
<broker xmlns="http://activemq.org/schema">
<broker xmlns="http://activemq.apache.org/schema">

<security-manager class-name="org.apache.activemq.artemis.spi.core.security.ActiveMQBasicSecurityManager">
<property key="bootstrapUser" value="myUser"/>
Expand All @@ -1276,7 +1276,7 @@ If your use-case requires *multiple* users to be available when the broker
starts then you can use a configuration like this:

```xml
<broker xmlns="http://activemq.org/schema">
<broker xmlns="http://activemq.apache.org/schema">

<security-manager class-name="org.apache.activemq.artemis.spi.core.security.ActiveMQBasicSecurityManager">
<property key="bootstrapUserFile" value="artemis-users.properties"/>
Expand Down Expand Up @@ -1560,7 +1560,7 @@ provide JAAS integration, but users can provide their own implementation of
configure it in `bootstrap.xml` using the `security-manager` element, e.g.:

```xml
<broker xmlns="http://activemq.org/schema">
<broker xmlns="http://activemq.apache.org/schema">

<security-manager class-name="com.foo.MySecurityManager">
<property key="myKey1" value="myValue1"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/user-manual/en/using-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ further for additional details as appropriate.
The `bootstrap.xml` file is very simple. Let's take a look at an example:

```xml
<broker xmlns="http://activemq.org/schema">
<broker xmlns="http://activemq.apache.org/schema">

<jaas-security domain="activemq"/>

Expand Down
2 changes: 1 addition & 1 deletion docs/user-manual/en/versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ Highlights:

1. Create `<ARTEMIS_INSTANCE>/etc/management.xml`. At the very least, the file must contain this:
```xml
<management-context xmlns="http://activemq.org/schema"/>
<management-context xmlns="http://activemq.apache.org/schema"/>
```
This configures role based authorisation for JMX. Read more in the [Management](management.md) documentation.
1. If configured, remove the Jolokia war file from the `web` element in `<ARTEMIS_INSTANCE>/etc/bootstrap.xml`:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
~ limitations under the License.
-->

<broker xmlns="http://activemq.org/schema">
<broker xmlns="http://activemq.apache.org/schema">

<jaas-security domain="activemq"/>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<management-context xmlns="http://activemq.org/schema">
<management-context xmlns="http://activemq.apache.org/schema">
<connector
connector-port="1099"
connector-host="localhost"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<management-context xmlns="http://activemq.org/schema">
<management-context xmlns="http://activemq.apache.org/schema">
<connector connector-port="1099" connector-host="localhost"/>
<authorisation>
<allowlist>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<management-context xmlns="http://activemq.org/schema">
<management-context xmlns="http://activemq.apache.org/schema">
<connector connector-port="1099" connector-host="127.0.0.1"/>
<authorisation>
<allowlist>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
~ limitations under the License.
-->

<broker xmlns="http://activemq.org/schema">
<broker xmlns="http://activemq.apache.org/schema">

<security-manager class-name="org.apache.activemq.artemis.jms.example.JAASSecurityManagerWrapper">
<property key="domain" value="activemq"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
~ limitations under the License.
-->

<broker xmlns="http://activemq.org/schema">
<broker xmlns="http://activemq.apache.org/schema">

<jaas-security domain="activemq" certificate-domain="activemq-cert"/>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
~ limitations under the License.
-->

<broker xmlns="http://activemq.org/schema">
<broker xmlns="http://activemq.apache.org/schema">

<jaas-security domain="activemq" certificate-domain="activemq-cert"/>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
~ limitations under the License.
-->

<broker xmlns="http://activemq.org/schema">
<broker xmlns="http://activemq.apache.org/schema">

<jaas-security domain="activemq"/>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<management-context xmlns="http://activemq.org/schema">
<management-context xmlns="http://activemq.apache.org/schema">
<connector connector-port="10099" connector-host="localhost"/>
<authorisation>
<allowlist>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<management-context xmlns="http://activemq.org/schema">
<management-context xmlns="http://activemq.apache.org/schema">
<connector connector-port="10099" connector-host="localhost"/>
<authorisation>
<allowlist>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<management-context xmlns="http://activemq.org/schema">
<management-context xmlns="http://activemq.apache.org/schema">
<connector connector-port="10199" connector-host="localhost"/>
</management-context>
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<management-context xmlns="http://activemq.org/schema">
<management-context xmlns="http://activemq.apache.org/schema">
<connector connector-port="10199" connector-host="localhost"/>
</management-context>
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<management-context xmlns="http://activemq.org/schema">
<management-context xmlns="http://activemq.apache.org/schema">
<connector connector-port="10099" connector-host="localhost"/>
</management-context>
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<management-context xmlns="http://activemq.org/schema">
<management-context xmlns="http://activemq.apache.org/schema">
<connector connector-port="10099" connector-host="localhost"/>
</management-context>
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<management-context xmlns="http://activemq.org/schema">
<management-context xmlns="http://activemq.apache.org/schema">
<connector connector-port="10099" connector-host="localhost"/>
</management-context>
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<management-context xmlns="http://activemq.org/schema">
<management-context xmlns="http://activemq.apache.org/schema">
<connector connector-port="10099" connector-host="localhost"/>
</management-context>
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<management-context xmlns="http://activemq.org/schema">
<management-context xmlns="http://activemq.apache.org/schema">
<connector connector-port="10199" connector-host="localhost"/>
</management-context>
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<management-context xmlns="http://activemq.org/schema">
<management-context xmlns="http://activemq.apache.org/schema">
<connector connector-port="10099"/>
<authorisation>
<allowlist>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<management-context xmlns="http://activemq.org/schema">
<management-context xmlns="http://activemq.apache.org/schema">
<connector connector-port="10099" connector-host="localhost" rmi-registry-port="10098" />
<authorisation>
<allowlist>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<management-context xmlns="http://activemq.org/schema">
<management-context xmlns="http://activemq.apache.org/schema">
<connector connector-port="1099"/>
<authorisation>
<allowlist>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<management-context xmlns="http://activemq.org/schema">
<management-context xmlns="http://activemq.apache.org/schema">
<connector connector-port="10099" connector-host="localhost"/>
</management-context>
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<management-context xmlns="http://activemq.org/schema">
<management-context xmlns="http://activemq.apache.org/schema">
<connector connector-port="10199" connector-host="localhost"/>
</management-context>
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<management-context xmlns="http://activemq.org/schema">
<management-context xmlns="http://activemq.apache.org/schema">
<connector connector-port="10299" connector-host="localhost"/>
</management-context>
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<management-context xmlns="http://activemq.org/schema">
<management-context xmlns="http://activemq.apache.org/schema">
<connector connector-port="10399" connector-host="localhost"/>
</management-context>
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<management-context xmlns="http://activemq.org/schema">
<management-context xmlns="http://activemq.apache.org/schema">
<connector connector-port="10199" connector-host="localhost"/>
</management-context>
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<management-context xmlns="http://activemq.org/schema">
<management-context xmlns="http://activemq.apache.org/schema">
<connector connector-port="10099" connector-host="localhost"/>
</management-context>
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<management-context xmlns="http://activemq.org/schema">
<management-context xmlns="http://activemq.apache.org/schema">
<connector connector-port="10099" connector-host="localhost"/>
</management-context>
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<management-context xmlns="http://activemq.org/schema">
<management-context xmlns="http://activemq.apache.org/schema">
<connector connector-port="10199" connector-host="localhost"/>
</management-context>

0 comments on commit 4e52758

Please sign in to comment.