# File lib/aeolus_image/model/factory/base.rb, line 48
          def get(method_name, options = {})
            object_array = connection.get(custom_method_collection_url(method_name, options), headers)
            if object_array.class.to_s=="Array"
              object_array.collect! {|record| self.class.new.load(record)}
            else
              self.class.new.load(object_array)
            end
          end