com.dottydingo.hyperion.client.RequestMethod Maven / Gradle / Ivy
The newest version!
package com.dottydingo.hyperion.client;
/**
* Request methods
*/
public enum RequestMethod
{
GET(false),
PUT(true),
POST(true),
DELETE(false);
private boolean bodyRequest;
RequestMethod(boolean bodyRequest)
{
this.bodyRequest = bodyRequest;
}
public boolean isBodyRequest()
{
return bodyRequest;
}
}