View Javadoc
1   /*
2    * Copyright (c) 2002-2017, Mairie de Paris
3    * All rights reserved.
4    *
5    * Redistribution and use in source and binary forms, with or without
6    * modification, are permitted provided that the following conditions
7    * are met:
8    *
9    *  1. Redistributions of source code must retain the above copyright notice
10   *     and the following disclaimer.
11   *
12   *  2. Redistributions in binary form must reproduce the above copyright notice
13   *     and the following disclaimer in the documentation and/or other materials
14   *     provided with the distribution.
15   *
16   *  3. Neither the name of 'Mairie de Paris' nor 'Lutece' nor the names of its
17   *     contributors may be used to endorse or promote products derived from
18   *     this software without specific prior written permission.
19   *
20   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21   * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22   * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23   * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
24   * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25   * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26   * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27   * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28   * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30   * POSSIBILITY OF SUCH DAMAGE.
31   *
32   * License 1.0
33   */
34  package fr.paris.lutece.plugins.webappcontainer.business;
35  
36  import org.apache.commons.httpclient.Cookie;
37  
38  
39  /**
40   * This class supply the response informations and data from the external site
41   *
42   * @author ELY
43   *
44   */
45  public class WebappResponse
46  {
47      private byte[] _byteContent;
48      private String _strContentType;
49      private String _strContentCharset;
50      private String _strLocation;
51      private Cookie[] _cookies;
52  
53      /**
54           * @return the _cookies
55           */
56      public Cookie[] getCookies(  )
57      {
58          // Return a copy to _cookies to avoid malicious code
59          if ( _cookies != null )
60          {
61              return _cookies.clone(  );
62          }
63  
64          return null;
65      }
66  
67      /**
68       * @param cookies the cookies to set
69       */
70      public void setCookies( Cookie[] cookies )
71      {
72          // Save a copy to cookies to avoid malicious code
73          if ( cookies != null )
74          {
75              this._cookies = cookies.clone(  );
76          }
77      }
78  
79      /**
80       * @return the _strContentCharset
81       */
82      public String getContentCharset(  )
83      {
84          return _strContentCharset;
85      }
86  
87      /**
88       * @param strContentCharset the _strContentCharset to set
89       */
90      public void setContentCharset( String strContentCharset )
91      {
92          _strContentCharset = strContentCharset;
93      }
94  
95      /**
96           * @return the _strLocation
97           */
98      public String getLocation(  )
99      {
100         return _strLocation;
101     }
102 
103     /**
104      * @param strLocation the _strLocation to set
105      */
106     public void setLocation( String strLocation )
107     {
108         _strLocation = strLocation;
109     }
110 
111     /**
112     * @return the content
113     */
114     public byte[] getContent(  )
115     {
116         // Return a copy to _byteContent to avoid malicious code
117         if ( _byteContent != null )
118         {
119             return _byteContent.clone(  );
120         }
121 
122         return null;
123     }
124 
125     /**
126      * @param byteContent the content to set
127      */
128     public void setContent( byte[] byteContent )
129     {
130         // Save a copy to byteContent to avoid malicious code
131         if ( byteContent != null )
132         {
133             this._byteContent = byteContent.clone(  );
134         }
135     }
136 
137     /**
138      * @return the contentType
139      */
140     public String getContentType(  )
141     {
142         return _strContentType;
143     }
144 
145     /**
146      * @param strContentType the contentType to set
147      */
148     public void setContentType( String strContentType )
149     {
150         _strContentType = strContentType;
151     }
152 }