getConfigPropertyArray()

Retrieve the value of a multi-element collaboration configuration property.

Syntax

String[] getConfigPropertyArray(String propertyName)
 

Parameters

propertyName
The name of a property defined in the collaboration template.

Return values

An array of property values.

Notes

This method retrieves the value of a multi-element configuration property. A multi-element configuration property consists of a number of values, separated by semicolons.

If the property does not exist, the array is empty. If the property has a single element, the array has only one element.

You can use a multi-element configuration property to get input from a user. The collaboration can then use this multi-element property to build a Retrieve request, in the absence of a business object's key attribute values. The user can specify the attributes that should be used to retrieve the business object by specifying values for the elements of the configuration property.

Examples

The following example retrieves a list of properties associated with the name ATTR_LIST.

String[] list = getConfigPropertyArray("ATTR_LIST");
 

Copyright IBM Corp. 2003, 2004