module ActiveLdap::Callbacks

def create #:nodoc:

:nodoc:
def create #:nodoc:
  run_callbacks(:create) { super }
end

def create_or_update #:nodoc:

:nodoc:
def create_or_update #:nodoc:
  run_callbacks(:save) { super }
end

def destroy #:nodoc:

:nodoc:
def destroy #:nodoc:
  run_callbacks(:destroy) { super }
end

def touch(*) #:nodoc:

:nodoc:
def touch(*) #:nodoc:
  run_callbacks(:touch) { super }
end

def update(*) #:nodoc:

:nodoc:
def update(*) #:nodoc:
  run_callbacks(:update) { super }
end