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

Method getProtocolRequestId

java/org/apache/coyote/Request.java:1071–1079  ·  view source on GitHub ↗

Return the protocol request ID. @return the protocol request ID

()

Source from the content-addressed store, hash-verified

1069 * @return the protocol request ID
1070 */
1071 public String getProtocolRequestId() {
1072 if (hook != null) {
1073 AtomicReference<String> ref = new AtomicReference<>();
1074 hook.action(ActionCode.PROTOCOL_REQUEST_ID, ref);
1075 return ref.get();
1076 } else {
1077 return null;
1078 }
1079 }
1080
1081
1082 /**

Callers

nothing calls this directly

Calls 2

actionMethod · 0.65
getMethod · 0.65

Tested by

no test coverage detected