diff --git a/lam/lib/userentry.php b/lam/lib/userentry.php new file mode 100644 index 00000000..ebe03e7f --- /dev/null +++ b/lam/lib/userentry.php @@ -0,0 +1,80 @@ +sn; + } + + function setSn ($in_value) { + $this->sn = $in_value; + } + + function getCn() { + return $this->cn; + } + + function setCn ($in_value) { + $this->cn = $in_value; + } + + function getGivenName() { + return $this->givenName; + } + + function setGivenName ($in_value) { + $this->givenName = $in_value; + } + + function getUid() { + return $this->uid; + } + + function setUid ($in_value) { + $this->uid = $in_value; + } + + function getHomeDirectory() { + return $this->homeDirectory; + } + + function setHomeDirectory ($in_value) { + $this->homeDirectory = $in_value; + } + +} + +?> +