* Retrieve the list of roles defined by this enterprise.
*
* @return List of roles by this enterprise.
*/
public Iterable<Role> listRoles() {
RolesDto dto = context.getApi().getAdminApi().listRoles(target);
return wrap(context, Role.class, dto.getCollection());
}