How to get the owner of a RTC category using Java Client Plain API?
This way, I got a ICategory object.
ICategoryHandle categoryHandle = fWorkItem.getCategory();
ICategory category = fAuditableClient.resolveAuditable(categoryHandle, ICategory.DEFAULT_PROFILE, null);
But now I want to know who is the owner (IContributor) of this category, do you know what should I do?
Thanks!
ICategoryHandle categoryHandle = fWorkItem.getCategory();
ICategory category = fAuditableClient.resolveAuditable(categoryHandle, ICategory.DEFAULT_PROFILE, null);
But now I want to know who is the owner (IContributor) of this category, do you know what should I do?
Thanks!