The XML definition for resource folders is shown below.
| <?xml version="1.0" encoding="utf-8"?> <Folder name="Resource Folder Name" label="Label"> <Comment>Comment</Comment> <LServers> <LServer name="L-Server Name" label="Label"> L-Server information </LServer> <LServer name="L-Server Name" label="Label"> L-Server information </LServer> ... </LServers> </Folder> | 
| Element Name | Description | Remarks (Possible Values, Examples) | 
|---|---|---|
| Resource Folder Name (Folder name) | Name of the resource folder | Specify a character string beginning with an alphanumeric character and containing up to 32 alphanumeric characters, underscores ("_"), and hyphens ("-"). When creating it in a resource folder or a tenant, specify the resource folder name or the tenant name using slashes ("/"), as shown below. /Tenant_name/Resource_folder_name | 
| Label (Folder label) | Resource folder label (optional) | Specify a character string of up to 32 alphanumeric characters or symbols. | 
| Comment (Comment) | Comment for the resource folder (optional) | Specify a character string of up to 256 alphanumeric characters or symbols. | 
For details on the elements of LServer tags, refer to "15.3 L-Servers".
Example
| <?xml version="1.0" encoding="utf-8"?>
<Folder name="folder001" label="Folder for work 1">
  <Comment>Created on 2010/XX/XX for work 1</Comment>
  <LServers>
    <LServer name="L-Server1" label="Label">
      L-Server1 Information
    </LServer>
    <LServer name="L-Server2" label="Label">
      L-Server2 Information
    </LServer>
  </LServers>
</Folder> |