description; } /** * Gets whether this objectClass is flagged as obsolete by the LDAP server. */ public function getIsObsolete() { return $this->is_obsolete; } /** * Return the objects name. * * param boolean $lower Return the name in lower case (default) * @return string The name */ public function getName($lower=true) { return $lower ? strtolower($this->name) : $this->name; } public function getOID() { return $this->oid; } public function setDescription($desc) { $this->description = $desc; } /** * Sets this attriute's name. * * @param string $name The new name to give this attribute. */ public function setName($name) { $this->name = $name; } public function setOID($oid) { $this->oid = $oid; } } ?>