Skip to content
Snippets Groups Projects
Commit 1e4faaf1 authored by Ralf Haferkamp's avatar Ralf Haferkamp
Browse files

Additional getter methods for LDAPModification

parent 0a9f51f5
No related branches found
No related tags found
No related merge requests found
......@@ -38,3 +38,11 @@ LDAPMod* LDAPModification::toLDAPMod() const {
}
return ret;
}
const LDAPAttribute* LDAPModification::getAttribute() const {
return &m_attr;
}
LDAPModification::mod_op LDAPModification::getOperation() const {
return m_mod_op;
}
......@@ -18,6 +18,9 @@ class LDAPModification{
LDAPModification(const LDAPAttribute& attr, mod_op op);
LDAPMod *toLDAPMod() const;
const LDAPAttribute* getAttribute() const;
mod_op getOperation() const;
private:
LDAPAttribute m_attr;
mod_op m_mod_op;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment