# File lib/fog/compute/models/ninefold/images.rb, line 17
        def get(identifier, offering = 'executable')
          data = connection.list_templates(:templatefilter => offering, :id => identifier)
          if data.empty?
            nil
          else
            new(data[0])
          end
        end