()
| 2885 | } |
| 2886 | |
| 2887 | private CookieProcessor getCookieProcessor() { |
| 2888 | Context context = getContext(); |
| 2889 | if (context == null) { |
| 2890 | // No context. Possible call from Valve before a Host level |
| 2891 | // context rewrite when no ROOT content is configured. Use the |
| 2892 | // default CookieProcessor. |
| 2893 | return new Rfc6265CookieProcessor(); |
| 2894 | } else { |
| 2895 | return context.getCookieProcessor(); |
| 2896 | } |
| 2897 | } |
| 2898 | |
| 2899 | /** |
| 2900 | * Parse cookies. This only parses the cookies into the memory efficient ServerCookies structure. It does not |
no test coverage detected