MCPcopy Create free account
hub / github.com/apache/tomcat / getCookieProcessor

Method getCookieProcessor

java/org/apache/catalina/connector/Request.java:2887–2897  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

Callers 2

parseCookiesMethod · 0.95
convertCookiesMethod · 0.95

Calls 2

getContextMethod · 0.95
getCookieProcessorMethod · 0.95

Tested by

no test coverage detected