Get field values

Previous Topic

Next Topic

Book Contents

Get field values

Your application can retrieve a list of all field values for each topic, topic template, or work team by calling the getFieldValues method. This method can be used to browse topics and choose a topic based on additional information, such as the assigned user, state, or to browse topic templates or work teams. Set the fieldContext argument to one of the enumeration values of FieldContext: TOPICS, TOPIC_TEMPLATES, or WORKTEAMS. This method returns the FieldValues value object with a list of fields.

FieldValues getFieldValues(TopicsServiceContext serviceContext,

FieldContext fieldContext)

throws InvalidArgumentException, TopicsServiceException;

The FieldContext input parameter in an enumeration for topics, topic templates, or work team values.

enum FieldContext {

TOPICS, TOPIC_TEMPLATES, WORKTEAMS

}

Send Feedback