All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy