MCPcopy Index your code
hub / github.com/apache/tomcat / getServletConnection

Method getServletConnection

java/org/apache/coyote/Request.java:1087–1095  ·  view source on GitHub ↗

Return the servlet connection. @return the servlet connection

()

Source from the content-addressed store, hash-verified

1085 * @return the servlet connection
1086 */
1087 public ServletConnection getServletConnection() {
1088 if (hook != null) {
1089 AtomicReference<ServletConnection> ref = new AtomicReference<>();
1090 hook.action(ActionCode.SERVLET_CONNECTION, ref);
1091 return ref.get();
1092 } else {
1093 return null;
1094 }
1095 }
1096
1097
1098 @Override

Callers

nothing calls this directly

Calls 2

actionMethod · 0.65
getMethod · 0.65

Tested by

no test coverage detected