Skip to content

Commit

Permalink
add class base for ldap equivalent of `pwd'
Browse files Browse the repository at this point in the history
  • Loading branch information
nixeagle committed Jan 22, 2010
1 parent be45e0b commit e540129
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ldap.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,14 @@
(declare (type boolean state))
(call-next-method))

(defclass base (modification)
((base :type string
:reader base
:initarg :base
:documentation "LDAP base path: equivalent to 'ls' on *nix."))
(:documentation "Represents LDAP base path.")
(:default-initargs :base ""))

(defclass dn (modification)
((dn :type string
:reader dn
Expand Down

0 comments on commit e540129

Please sign in to comment.