Don't ignore drives with type "aufs" or "overlay" (Xamarin-31021)
[mono.git] / mcs / class / Mainsoft.Web / Mainsoft.Web.Hosting / BaseFacesPageHandlerFactory.cs
1 //\r
2 // (C) 2007 Mainsoft Corporation (http://www.mainsoft.com)\r
3 // Author: Igor Zelmanovich <igorz@mainsoft.com>\r
4 //\r
5 \r
6 //\r
7 // Permission is hereby granted, free of charge, to any person obtaining\r
8 // a copy of this software and associated documentation files (the\r
9 // "Software"), to deal in the Software without restriction, including\r
10 // without limitation the rights to use, copy, modify, merge, publish,\r
11 // distribute, sublicense, and/or sell copies of the Software, and to\r
12 // permit persons to whom the Software is furnished to do so, subject to\r
13 // the following conditions:\r
14 //\r
15 // The above copyright notice and this permission notice shall be\r
16 // included in all copies or substantial portions of the Software.\r
17 //\r
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,\r
19 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r
20 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r
21 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r
22 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r
23 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r
24 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
25 //\r
26 \r
27 using System;\r
28 using System.Collections.Generic;\r
29 using System.Text;\r
30 using System.Web;\r
31 using javax.faces.context;\r
32 using javax.faces.lifecycle;\r
33 using javax.servlet;\r
34 using javax.faces;\r
35 using javax.faces.webapp;\r
36 \r
37 namespace Mainsoft.Web.Hosting\r
38 {\r
39         public abstract class BaseFacesPageHandlerFactory : IHttpHandlerFactory\r
40         {\r
41                 public abstract IHttpHandler GetHandler (HttpContext context, string requestType, string url, string pathTranslated);\r
42 \r
43                 public virtual void ReleaseHandler (IHttpHandler handler) {\r
44                 }\r
45         }\r
46 }\r