summaryrefslogtreecommitdiff
path: root/libjava/gnu/java/net/protocol/http/Response.h
blob: 928b212479b98b929e4f5ac78617ac32d006df8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-

#ifndef __gnu_java_net_protocol_http_Response__
#define __gnu_java_net_protocol_http_Response__

#pragma interface

#include <java/lang/Object.h>
extern "Java"
{
  namespace gnu
  {
    namespace java
    {
      namespace net
      {
        namespace protocol
        {
          namespace http
          {
              class Headers;
              class Response;
          }
        }
      }
    }
  }
}

class gnu::java::net::protocol::http::Response : public ::java::lang::Object
{

public: // actually protected
  Response(jint, jint, jint, ::java::lang::String *, ::gnu::java::net::protocol::http::Headers *, ::java::io::InputStream *);
public:
  virtual jint getMajorVersion();
  virtual jint getMinorVersion();
  virtual jint getCode();
  virtual jint getCodeClass();
  virtual ::java::lang::String * getMessage();
  virtual ::gnu::java::net::protocol::http::Headers * getHeaders();
  virtual ::java::lang::String * getHeader(::java::lang::String *);
  virtual jint getIntHeader(::java::lang::String *);
  virtual jlong getLongHeader(::java::lang::String *);
  virtual ::java::util::Date * getDateHeader(::java::lang::String *);
  virtual jboolean isRedirect();
  virtual jboolean isError();
  virtual ::java::io::InputStream * getBody();
public: // actually protected
  jint __attribute__((aligned(__alignof__( ::java::lang::Object)))) majorVersion;
  jint minorVersion;
  jint code;
  ::java::lang::String * message;
  ::gnu::java::net::protocol::http::Headers * headers;
  ::java::io::InputStream * body;
public:
  static ::java::lang::Class class$;
};

#endif // __gnu_java_net_protocol_http_Response__