com.tinkerpop.rexster.extension.HttpMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rexster-core Show documentation
Show all versions of rexster-core Show documentation
Core components for extending Rexster.
The newest version!
package com.tinkerpop.rexster.extension;
/**
* The HTTP Method.
*
* @author Stephen Mallette (http://stephen.genoprime.com)
*/
public enum HttpMethod {
POST,
GET,
DELETE,
OPTIONS,
HEAD,
PUT,
ANY
}