Sha256: c46768f4d9acb8d8d0e8a5b4707a1ff3b775d5aaf8f64302d3ceff86e6c807f3
Contents?: true
Size: 720 Bytes
Versions: 14
Compression:
Stored size: 720 Bytes
Contents
package com.rho.net; public interface IHttpConnection { //HTTP METHODS public final static String GET = "GET"; public final static String POST = "POST"; public final static String HEAD = "HEAD"; //HTTP RESPONSE CODES public static int HTTP_OK = 200; public static int HTTP_PARTIAL_CONTENT = 206; public static int HTTP_MOVED_TEMPORARILY = 302; public static int HTTP_MOVED_PERMANENTLY = 301; public static final int HTTP_MOVED_PERM = 301; public static int HTTP_BAD_REQUEST = 400; public static int HTTP_NOT_FOUND = 404; public static int HTTP_UNAUTHORIZED = 401; public static int HTTP_RANGENOTSATISFY = 416; public static int HTTP_INTERNAL_ERROR = 500; public static int HTTP_NOTMODIFIED = 304; }
Version data entries
14 entries across 14 versions & 1 rubygems