class Async::REST::Wrapper::Form

def parser_for(response)

def parser_for(response)
	if content_type = response.headers["content-type"]
		if parser = @content_types[content_type]
			return parser
		end
	end
	
	return super
end