Pauses the protocol handler. @throws Exception if pause fails
()
| 1015 | * @throws Exception if pause fails |
| 1016 | */ |
| 1017 | @Override |
| 1018 | public void pause() throws Exception { |
| 1019 | if (getLog().isInfoEnabled()) { |
| 1020 | getLog().info(sm.getString("abstractProtocolHandler.pause", getName())); |
| 1021 | } |
| 1022 | |
| 1023 | endpoint.pause(); |
| 1024 | } |
| 1025 | |
| 1026 | |
| 1027 | /** |