public ResultMessage get(String messageId, String index) throws IndexMissingException, DocumentNotFoundException {
GetRequestBuilder grb = new GetRequestBuilder(c, index);
grb.setId(messageId);
GetResponse r = c.get(grb.request()).actionGet();
if (!r.isExists()) {
throw new DocumentNotFoundException();
}