Property definitions

neo4j $ JsonGET :: defaultinit
# HTTP GET command
class JsonGET
	super JsonCurlRequest

	redef fun execute_hook do
		var err = self.curl.native.easy_setopt(new CURLOption.get, true)
		if not err.is_ok then return answer_failure(err.to_i, err.to_s)
		return null
	end
end
lib/neo4j/curl_json.nit:95,1--104,3