summaryrefslogtreecommitdiff
path: root/ldap/generics.lisp
diff options
context:
space:
mode:
authorckonstanski <carlos.konstanski@olo.com>2021-11-27 10:20:12 -0700
committerckonstanski <carlos.konstanski@olo.com>2021-11-27 10:20:12 -0700
commit31657f6854edc116946a099be889440fb3e92e53 (patch)
treebe32747cfaf2f19f59857349438d62fb4a4a25b6 /ldap/generics.lisp
parent41ca4dcf8a18a76c48734a5fca4c56afb735a66e (diff)
moved everything under lisp/
Diffstat (limited to 'ldap/generics.lisp')
-rw-r--r--ldap/generics.lisp18
1 files changed, 0 insertions, 18 deletions
diff --git a/ldap/generics.lisp b/ldap/generics.lisp
deleted file mode 100644
index ed8a839..0000000
--- a/ldap/generics.lisp
+++ /dev/null
@@ -1,18 +0,0 @@
-;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
-(declaim (optimize (speed 0) (safety 3) (debug 3)))
-
-(in-package :ldapadmin)
-
-(defgeneric disconnect (ldap)
- (:documentation ""))
-
-(defgeneric get-ldap-users (ldap search-base)
- (:documentation "Calls `with-ldap-iterate' to iterate over all LDAP
-users returned with the search `search-base', wrapping each entry in
-an `ldap-user' object. Returns a list of these objects. `ldap' is a
-free variable that must be present for `with-ldap-iterate'."))
-
-(defgeneric get-ldap-user (ldap cn)
- (:documentation "Calls `with-ldap-users' with a search filter and
-returns the first entry."))
-