mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-11-16 01:22:18 +03:00
Replaces getKeyWithCollection with getName on VariableValue
This commit is contained in:
@@ -74,26 +74,27 @@ class VariableValue {
|
||||
}
|
||||
}
|
||||
|
||||
const std::string& getKey() const {
|
||||
return m_key;
|
||||
}
|
||||
|
||||
|
||||
const std::string& getKeyWithCollection() const {
|
||||
const std::string& getName() const noexcept {
|
||||
return m_keyWithCollection;
|
||||
}
|
||||
|
||||
|
||||
const std::string& getCollection() const {
|
||||
return m_collection;
|
||||
}
|
||||
|
||||
|
||||
const std::string& getValue() const {
|
||||
const std::string& getValue() const noexcept {
|
||||
return m_value;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
const std::string& getKey() const {
|
||||
return m_key;
|
||||
}
|
||||
|
||||
const std::string& getCollection() const {
|
||||
return m_collection;
|
||||
}
|
||||
|
||||
void setValue(const std::string &value) {
|
||||
m_value = value;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user