<?xml version="1.0" encoding="utf-16"?>
<xs:simpleType name="ObjectAccessModeWKV">
<xs:restriction base="xs:NMTOKEN">
<xs:maxLength value="255" />
<xs:enumeration value="OwnerRead" />
<xs:enumeration value="OwnerWrite" />
<xs:enumeration value="OwnerExecute" />
<xs:enumeration value="GroupRead" />
<xs:enumeration value="GroupWrite" />
<xs:enumeration value="GroupExecute" />
<xs:enumeration value="WorldRead" />
<xs:enumeration value="WorldWrite" />
<xs:enumeration value="WorldExecute" />
<!-- S_IRUSR bit in POSIX mask -->
<!-- S_IWUSR bit in POSIX mask -->
<!-- S_IXUSR bit in POSIX mask -->
<!-- S_IRGRP bit in POSIX mask -->
<!-- S_IWGRP bit in POSIX mask -->
<!-- S_IXGRP bit in POSIX mask -->
<!-- S_IROTH bit in POSIX mask -->
<!-- S_IWOTH bit in POSIX mask -->
<!-- S_IXOTH bit in POSIX mask -->
</xs:restriction>
<!-- access permissions for this object -->
<!-- see 'chmod' - POSIX System Interfaces [ISO9945]-->
<!-- see 'sys/stat.h' - POSIX System Interfaces [ISO9945]-->
</xs:simpleType>
|