Collection<String> response = Lists.newLinkedList();
if (params.isEmpty()) {
// start posting
Notifier.INSTANSE.notify(new PostStartEvent());
response.add(NntpResponse.Post.SEND_ARTICLE_TO_BE_POSTED);
} else {
// end posting
Notifier.INSTANSE.notify(new PostEndEvent());
response.add(NntpResponse.Post.ARTICLE_RECEIVED_OK);