# File lib/openshift-origin-controller/app/models/domain.rb, line 88
  def delete
    Rails.logger.debug "Deleting domain #{self.namespace} uuid #{self.uuid}"
    resultIO = ResultIO.new
    delete_dns
    super(user.login)
    Rails.logger.debug "notifying the domain observer of domain delete"
    notify_observers(:after_domain_destroy) 
    Rails.logger.debug "done notifying the domain observer"
    resultIO
  end