TARGET_J2EE compilation & integration fixes.
[mono.git] / mcs / class / System.Web / System.Web.Caching / CachedRawResponse.cs
1 //
2 // System.Web.Caching.CachedRawResponse
3 //
4 // Author(s):
5 //  Jackson Harper (jackson@ximian.com)
6 //
7 // (C) 2003 Novell, Inc (http://www.novell.com)
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31
32 using System;
33 using System.Text;
34 using System.Collections;
35
36 namespace System.Web.Caching {
37
38         internal class CachedRawResponse {
39
40                 private HttpCachePolicy policy;
41                 private CachedVaryBy varyby;
42                 private int status_code;
43                 private string status_desc;
44                 private int content_length;
45                 private ArrayList headers;
46                 private HttpResponseHeader date_header;
47                 private byte[] buffer;
48                 
49                 internal CachedRawResponse (HttpCachePolicy policy)
50                 {
51                         this.policy = policy;
52                         this.buffer = new byte [HttpWriter.MaxBufferSize];
53                 }
54
55                 internal HttpCachePolicy Policy {
56                         get { return policy; }
57                         set { policy = value; }
58                 }
59
60                 internal CachedVaryBy VaryBy {
61                         get { return varyby; }
62                         set { varyby = value; }
63                 }
64                 
65                 internal int StatusCode {
66                         get { return status_code; }
67                         set { status_code = value; }
68                 }
69
70                 internal string StatusDescription {
71                         get { return status_desc; }
72                         set { status_desc = value; }
73                 }
74
75                 internal int ContentLength {
76                         get { return content_length; }
77                         set { content_length = value; }
78                 }
79                 
80                 internal ArrayList Headers {
81                         get { return headers; }
82                 }
83
84                 internal HttpResponseHeader DateHeader {
85                         get { return date_header; }
86                         set { date_header = value; }
87                 }
88                 
89                 internal void SetHeaders (ArrayList headers) {
90                         this.headers = headers;
91                 }
92
93                 internal void SetData (byte[] buffer)
94                 {
95                         this.buffer = buffer;
96                 }
97                 
98                 internal byte[] GetData ()
99                 {
100                         return buffer;
101                 }
102         }
103 }
104