RoleHolder

Description

The RoleHolder type contains the RoleInfo response and any errors for roles that were not successfully returned. The RoleHolder type parameters are listed below.

Parameters

Name Type Description
role RoleInfo Holds complete information about a role.
access Status Holds status information for any messages or failures that are encountered.

Usage

The RoleHolder type returns detailed information for roles from the GetUserRoles, GetGroupRoles, SetGroupRoles, and SetUserRoles calls. If any errors occur during the call, they are returned in the status element in the order in which they were processed.

XML

The following XML shows RoleHolder as seen in the <ae:role> element in a response.

<ae:role>
   <ae:id xsi:type="ae:RoleIdentifier">
      <ae:displayName>IDM Team</ae:displayName>
      <ae:id>1</ae:id>
      <ae:uuid>a59d7c1d-1f5e-4f0f-b906-41eb234721ae</ae:uuid>
      <ae:projectId xsi:type="ae:ProjectIdentifier">
         <ae:displayName>IDM Project</ae:displayName>
         <ae:id>2</ae:id>
         <ae:uuid>0b87f347-a00c-4359-9c16-625e847bfdab</ae:uuid>
      </ae:projectId>
   </ae:id>
   <ae:access>GRANTED</ae:access>
   <ae:extendedData>
      <ae:data>
         <ae:name>inheritedFrom</ae:name>
         <ae:value>IDM View Only  (Group)</ae:value>
      </ae:data>
   </ae:extendedData>
</ae:role>