# File lib/aeolus_cli/command/list_command.rb, line 107
      def providers
        begin
          headers = ActiveSupport::OrderedHash.new
          headers[:name] = "Name"
          headers[:provider_type] = "Type"
          headers[:deltacloud_provider] = "Target Reference"
          print_collection(Aeolus::CLI::Provider.all, headers)
          quit(0)
        rescue => e
          handle_exception(e)
        end
      end