* Retrieve the complete access control list (acl) for this object. * The acl is essentially just an array of user ids (uid) * * @return Returns an array if uid_t references for each user granted * access. */
| 488 | * access. |
| 489 | */ |
| 490 | const std::vector<uid_t> GetAccessList() |
| 491 | { |
| 492 | auto ret = proxy->GetPropertyArray<uid_t>(target, "acl"); |
| 493 | return ret; |
| 494 | } |
| 495 | |
| 496 | |
| 497 | /** |