Returns the session. @return session @throws IOException I/O exception
()
| 108 | * @throws IOException I/O exception |
| 109 | */ |
| 110 | protected final Session session() throws IOException { |
| 111 | if(session == null) session = init(); |
| 112 | session.setOutputStream(out); |
| 113 | return session; |
| 114 | } |
| 115 | |
| 116 | /** |
| 117 | * Initializes and returns a session. |
no test coverage detected