tsd:accessOptions

Caution:
The tsd:accessOptions element is deprecated in Tamino 4.2.

Purpose

This element controls access to the doctype with which it is associated. You can set the access option to allow or exclude read, insert, update or delete access to this doctype, depending on whether the optional tsd:read, tsd:insert, tsd:update or tsd:delete elements are present. Also refer to the following documentation of the child elements.

The default for the optional element tsd:accessOptions is:

<tsd:accessOptions>
  <tsd:read/>
  <tsd:insert/>
  <tsd:update/>
  <tsd:delete/>
</tsd:accessOptions>
Parent element tsd:logical or tsd:nonXML (no difference in details depending on parent)
Child elements tsd:read, tsd:insert, tsd:update, tsd:delete
Attributes None

Example

The following access options specify read, insert, and update access to the corresponding doctype but not delete access.

<tsd:doctype name="address">
  <tsd:logical>
    <tsd:content>open</tsd:content>
    <tsd:accessOptions>
      <tsd:read />
      <tsd:insert />
      <tsd:update />
    </tsd:accessOptions>
  </tsd:logical>
</tsd:doctype>

See also tsd:logical, tsd:objectRef and tsd:subTreeSQL