Skip to content

Commit

Permalink
update dn to remember its modification state
Browse files Browse the repository at this point in the history
  • Loading branch information
nixeagle committed Jan 21, 2010
1 parent 07b75e2 commit c5d65d1
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions ldap.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,20 @@
;; can select on.
(:documentation "Base of all ldap messages."))

(defclass dn ()
((dn :type string
:reader dn
:initarg :dn)
(modified-p :type boolean
(defclass modification-state ()
((modified-p :type boolean
:reader modified-p
:initform nil))
(:documentation "Represents a modified state."))

(defclass modification-time ()
((modified-time :reader modification-time
)))

(defclass dn (modification-state)
((dn :type string
:reader dn
:initarg :dn))
(:documentation "!!!")
(:default-initargs :dn ""))

Expand Down

0 comments on commit c5d65d1

Please sign in to comment.