Name

javax.microedition.io.HttpConnection

Synopsis

This interface defines the necessary constants and methods for an HTTP connection. For some usage examples, see Chapter 7.

public interfaceHttpConnection extends javax.microedition.io.ContentConnection {
   // public class fields
   public static final String GET = "GET";
   public static final String HEAD = "HEAD";
   public static final String POST = "POST";
   public static final int HTTP_ACCEPTED = 202;
   public static final int HTTP_BAD_GATEWAY = 502;
   public static final int HTTP_BAD_METHOD = 405;
   public static final int HTTP_BAD_REQUEST = 400;
   public static final int HTTP_CLIENT_TIMEOUT = 408;
   public static final int HTTP_CONFLICT = 409;
   public static final int HTTP_CREATED = 201;
   public static final int HTTP_ENTITY_TOO_LARGE = 413;
   public static final int HTTP_EXPECT_FAILED = 417;
   public static final int HTTP_FORBIDDEN = 403;
   public static final int HTTP_GATEWAY_TIMEOUT = 504;
   public static final int HTTP_GONE = 410;
   public static final int HTTP_INTERNAL_ERROR = 500;
   public static final int HTTP_LENGTH_REQUIRED = 411;
   public static final int HTTP_MOVED_PERM = 301;
   public static final int HTTP_MOVED_TEMP = 302;
   public static final int HTTP_MULT_CHOICE = 300;
   public static final int HTTP_NO_CONTENT = 204;
   public static final int HTTP_NOT_ACCEPTABLE = 406;
   public static final int HTTP_NOT_AUTHORITATIVE = 203;
   public static final int HTTP_NOT_FOUND = 404;
   public static final int HTTP_NOT_IMPLEMENTED = 501;
   public static final int HTTP_NOT_MODIFIED ...

Get Wireless Java now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.