Lines Matching refs:UserProperty
109 using UserProperty = typedef
110 sdbusplus::common::xyz::openbmc_project::user::Manager::UserProperty;
429 auto priv = std::get<std::string>(props[UserProperty::Privilege]); in createUserImpl()
430 auto enabled = std::get<bool>(props[UserProperty::Enabled]); in createUserImpl()
432 std::get<std::vector<std::string>>(props[UserProperty::GroupNames]); in createUserImpl()
435 if (props.contains(UserProperty::PasswordExpiration)) in createUserImpl()
437 std::get<uint64_t>(props[UserProperty::PasswordExpiration]); in createUserImpl()
500 props[UserProperty::GroupNames] = std::move(groupNames); in createUser()
501 props[UserProperty::Privilege] = std::move(priv); in createUser()
502 props[UserProperty::Enabled] = enabled; in createUser()
1903 if (createProps.contains(UserProperty::PasswordExpiration)) in createUser2()
1905 std::get<uint64_t>(createProps[UserProperty::PasswordExpiration]); in createUser2()