Send response to client. @param response response.
(Collection<String> response)
| 148 | * @param response response. |
| 149 | */ |
| 150 | private void send(Collection<String> response) throws IOException { |
| 151 | for (String message : response) { |
| 152 | logger.l4("[S] " + message); |
| 153 | out.println(message); |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | /** |
| 158 | * Process command from client. |