module ActiveFedora::Callbacks

def create #:nodoc:

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

def destroy #:nodoc:

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

def persist #:nodoc:

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

def update(*) #:nodoc:

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