ArtifactList

Description

Represents artifacts in list form. The list must be in the following format:

artifactType:artifactName:artifactValue;artifactType:artifactName:artifactValue
This type can be specified only as a nested element of an asset. ArtifactList is useful if you need to specify artifacts in a properties file.

If the artifactType is url, use the URL as the artifactValue.

If the artifactType is file or folder, use the path of the file or folder as the artifactValue.

If the artifactType is file, artifactName is not required. The default will be the file name.

If the artifactType is folder, artifactName must be empty. For example, folder::/path/to/folder

Example

Specify a file, folder, and URL artifact for an asset

<asset server="ramServer">
   <artifactList>
      file:MyFile.txt:/home/ramuser/somefile.txt;\
      folder::/home/ramuser/docs;\
      url:IBM:http://www.ibm.com
   </artifactList>
</asset>