# File lib/deltacloud/drivers/rhevm/rhevm_client.rb, line 225
    def template(template_id)
      headers = {
        :accept => "application/xml"
      }
      headers.merge!(auth_header)
      rhevm_template = RHEVM::client(@api_entrypoint)["/templates/%s" % template_id].get(headers)
      RHEVM::Template::new(self, Client::parse_response(rhevm_template).root)
    end