info.freelibrary.pairtree.HTTP Maven / Gradle / Ivy
package info.freelibrary.pairtree;
/**
* HTTP constants defined for use by the Pairtree library.
*/
public final class HTTP {
/** OK HTTP response code */
public static final int OK = 200;
/** Not Found HTTP response code */
public static final int NOT_FOUND = 404;
/** No content HTTP response code */
public static final int NO_CONTENT = 204;
/** Forbidden HTTP response code */
public static final int FORBIDDEN = 403;
/** Content-Length HTTP header */
public static final String CONTENT_LENGTH = "Content-Length";
/** An empty private constructor for this utility class */
private HTTP() {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy