# File lib/client/template_api.rb, line 25
    def template_interfaces template_id
      http_get("/templates/%s/nics" % template_id, http_headers).xpath('/nics/nic').collect do |nic|
        OVIRT::Interface::new(self, nic)
      end
    end