Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

A simple entity with a label

Code Block
xml
xml
linenumberstruexml
<entity:entity id="suburb">
	<label>Suburb</label>
</entity:entity>

An entity that's only visible to users who are members of the 'public' ACL

Code Block
xml
xml
linenumberstruexml
<entity:entity id="road">
	<label>Road</label>
	<acl>public</acl>
</entity:entity>

A entity with an ACL defined in-line, rather than referenced like the previous example

Code Block
xml
xml
linenumberstruexml
<entity:entity id="property">
	<label>Property</label>
	<acl:acl>
		<entry type="deny">anonymous</entry>
		<entry type="allow">*</entry>
	</acl:acl>
</entity:entity>