
com.clianz.spur.helpers.HttpMethods Maven / Gradle / Ivy
The newest version!
package com.clianz.spur.helpers;
import io.undertow.util.HttpString;
public class HttpMethods {
public static final HttpString GET = new HttpString("GET");
public static final HttpString PUT = new HttpString("PUT");
public static final HttpString POST = new HttpString("POST");
public static final HttpString PATCH = new HttpString("PATCH");
public static final HttpString DELETE = new HttpString("DELETE");
public static final HttpString HEAD = new HttpString("HEAD");
public static final HttpString OPTIONS = new HttpString("OPTIONS");
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy