TopicsUserInfo value object

The TopicsUserInfo method has the following fields:

  • canSavetoTopics—True if a user can save to a topic. If true, your application can display the Save to Topic link.
  • canCreateTopic—True if a user can create a topic. If true, your application can enable fields to create a topic in the Save to Topic dialog box.
  • canAccessMultipleWorkteams—True if a user can select zero or more work teams for a new topic.

    If true, your application should not display the work team drop-down list in the Save to Topic dialog box.

    If false, then each new topic must be assigned to one work team. Your application must display a work team selector, such as a drop-down list, in the Save to Topic dialog box to assign the new topic to a work team.

  • canViewTopics—Reserved for future use.
  • allowedAttachments—A list of attachment types that a user can attach to a topic or action.
    class TopicsUserInfo extends TopicsServiceResult {
     String username;
     boolean canSaveToTopics;
     boolean canSaveToNewTopic;
     boolean canAccessMultipleWorkteams;
     boolean canViewTopics;
     List<AttachmentType> allowedAttachments;
    }