Lines Matching refs:groupId
34 UnifiedKey::UnifiedKey(std::string intention, std::string bundle, std::string groupId)
38 this->groupId = std::move(groupId);
46 if (this->intention.empty() || this->groupId.empty()) {
50 this->key = UNIFIED_KEY_SCHEMA + this->intention + "/" + this->bundleName + "/" + this->groupId;
62 std::string data = this->key; // schema/intention/groupId
74 data = data.substr(pos + separator.size()); // intention/bundleName/groupId
97 data = data.substr(pos + 1); // groupId
102 LOG_DEBUG(UDMF_FRAMEWORK, "wrong groupId");
105 this->groupId = data;
143 // Characters of groupId are taken from Ascii codes 48 to 122.