# File lib/openshift-origin-controller/app/models/rest_reply.rb, line 23
  def to_xml(options={})
    options[:tag_name] = "response"
    if not self.data.kind_of?Enumerable
      new_data = self.data
      self.data = [new_data]
    end
    super(options)
  end