Return the protocol request ID. @return the protocol request ID
()
| 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 | /** |