setStringListAttribute abstract method

BatchProfileAttributeEditor setStringListAttribute(
  1. String key,
  2. List<String> value
)

Set a String List attribute for a key.

Attribute's key cannot be empty. It should be made of letters, numbers or underscores ([a-z0-9_]) and can't be longer than 30 characters.

String List attribute values cannot have more than 25 items. Individual items cannot be longer than 64 characters. For better results, you should make them upper/lowercase and trim the whitespaces.

Any attribute with an invalid key or value will be ignored.

Implementation

BatchProfileAttributeEditor setStringListAttribute(String key, List<String> value);