Skip to content

Commit

Permalink
Correct UCN Namespace definition key (#1045)
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesHazelcast authored Mar 11, 2024
1 parent 13d084f commit 08c8083
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
3 changes: 1 addition & 2 deletions docs/modules/clusters/pages/ucn-enable.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ XML::
+
[source,xml]
----
<user-code-namespaces>
<user-code-namespaces enabled="true">
<user-code-namespaces enabled="true">
</user-code-namespaces>
----
Expand Down
8 changes: 4 additions & 4 deletions docs/modules/clusters/pages/ucn-member-side.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ XML::
<class>com.acme.app.BeanComparator</class>
</blacklist>
</java-serialization-filter>
<user-code-namespace name="myNameSpace">
</user-code-namespace>
<namespace name="myNameSpace">
</namespace>
</user-code-namespaces>
----

Expand Down Expand Up @@ -80,7 +80,7 @@ XML::
----
<user-code-namespaces enabled="true">
...
<user-code-namespace name="myNameSpace">
<namespace name="myNameSpace">
<jar id="jarID">
<url>file:///hazelcast/src/class/usercodedeployment/MyJarFile.jar</url>
</jar>
Expand All @@ -90,7 +90,7 @@ XML::
<class id="classId">
<url>file:///hazelcast/src/class/usercodedeployment/MyClass.class</url>
</class>
</user-code-namespace>
</namespace>
</user-code-namespaces>
----

Expand Down
8 changes: 4 additions & 4 deletions docs/modules/clusters/pages/ucn-non-associated.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ XML::
----
<user-code-namespaces enabled="true">
...
<user-code-namespace name="default">
</user-code-namespace>
<namespace name="default">
</namespace>
</user-code-namespaces>
----
Expand Down Expand Up @@ -71,7 +71,7 @@ XML::
----
<user-code-namespaces enabled="true">
...
<user-code-namespace name="default">
<namespace name="default">
<jar id="jarID">
<url>file:///yoursrc/class/ucnDefaults/MyJarFile.jar</url>
</jar>
Expand All @@ -81,7 +81,7 @@ XML::
<class id="classId">
<url>file:///yoursrc/class/ucnDefaults/MyClass.class</url>
</class>
</user-code-namespace>
</namespace>
</user-code-namespaces>
----
Expand Down

0 comments on commit 08c8083

Please sign in to comment.