module ActiveLdap::Callbacks
def create #:nodoc:
def create #:nodoc: run_callbacks(:create) { super } end
def create_or_update #:nodoc:
def create_or_update #:nodoc: run_callbacks(:save) { super } end
def destroy #:nodoc:
def destroy #:nodoc: run_callbacks(:destroy) { super } end
def touch(*) #:nodoc:
def touch(*) #:nodoc: run_callbacks(:touch) { super } end
def update(*) #:nodoc:
def update(*) #:nodoc: run_callbacks(:update) { super } end