Name

list

Config File String List — Allows you to define read-only StringList data from within the configuration (config.xml) file.

<list class="xms.dataservices.list.ConfigFileStringList" name="name" > child tags </list>

Table 32. Attributes for list tag (for xms.dataservices.list.ConfigFileStringList)

NameDescriptionTypeDefault ValueRequired
cacheDo not use, does nothingboolean true or falsenoneno
cacheTimeoutDo not use, does nothingint any integernoneno
readOnlyDo not use, does nothing (always readonly)boolean true or falsenoneno

Service Dependencies

This tag depends on the following services (or a service that extends or implements these classes)

Child Tags

Item

<item>value</item>

Table 33. Attributes for item tag (for xms.dataservices.list.ConfigFileStringList)

NameDescriptionTypeDefault ValueRequired
valueThe value of the list itemString any character combinationnoneyes

Example 38. Example configuration for Config File String List

Required attributes are marked with a bold typeface

<list class="xms.dataservices.list.ConfigFileStringList" name="name"
      cache="cache"
      cacheTimeout="cacheTimeout"
      readOnly="readOnly">
    <item>
        value
    </item>
</list>