class Protocol::HTTP::Request

def idempotent?

def idempotent?
	method != Methods::POST && (body.nil? || body.empty?)
end