Added proper LGPL statements to all files.
[perl4caml.git] / wrappers / pl_HTTP_Response.ml
1 (** Wrapper around Perl [HTTP::Response] class. *)
2 (*  Copyright (C) 2003 Merjis Ltd.
3
4     This library is free software; you can redistribute it and/or
5     modify it under the terms of the GNU Library General Public
6     License as published by the Free Software Foundation; either
7     version 2 of the License, or (at your option) any later version.
8
9     This library is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12     Library General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this library; see the file COPYING.  If not, write to
16     the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17     Boston, MA 02111-1307, USA.
18
19     $Id: pl_HTTP_Response.ml,v 1.5 2008-03-01 13:02:21 rich Exp $
20   *)
21
22 open Perl
23
24 open Pl_HTTP_Message
25 open Pl_HTTP_Request
26
27 let _ = eval "use HTTP::Response"
28
29 class http_response sv =
30
31 object (self)
32   inherit http_message sv
33
34   method code =
35     string_of_sv (call_method sv "code" [])
36   method set_code code =
37     call_method_void sv "code" [sv_of_string code]
38   method message =
39     string_of_sv (call_method sv "message" [])
40   method set_message message =
41     call_method_void sv "message" [sv_of_string message]
42   method request =
43     new http_request (call_method sv "request" [])
44   method set_request (req : http_request) =
45     call_method_void sv "request" [req#sv]
46   method status_line =
47     string_of_sv (call_method sv "status_line" [])
48   method base =
49     string_of_sv (call_method sv "base" [])
50   method as_string =
51     string_of_sv (call_method sv "as_string" [])
52   method is_info =
53     bool_of_sv (call_method sv "is_info" [])
54   method is_success =
55     bool_of_sv (call_method sv "is_success" [])
56   method is_redirect =
57     bool_of_sv (call_method sv "is_redirect" [])
58   method is_error =
59     bool_of_sv (call_method sv "is_error" [])
60   method error_as_HTML =
61     string_of_sv (call_method sv "error_as_HTML" [])
62
63 end
64
65 (* let new_ ... *)