...
A simple entity with a label
Code Block |
---|
|
<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 |
---|
|
<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 |
---|
|
<entity:entity id="property">
<label>Property</label>
<acl:acl>
<entry type="deny">anonymous</entry>
<entry type="allow">*</entry>
</acl:acl>
</entity:entity>
|