Resumes the protocol handler. @throws Exception if resume fails
()
| 1040 | * @throws Exception if resume fails |
| 1041 | */ |
| 1042 | @Override |
| 1043 | public void resume() throws Exception { |
| 1044 | if (getLog().isInfoEnabled()) { |
| 1045 | getLog().info(sm.getString("abstractProtocolHandler.resume", getName())); |
| 1046 | } |
| 1047 | |
| 1048 | endpoint.resume(); |
| 1049 | } |
| 1050 | |
| 1051 | |
| 1052 | /** |