@GET
@Produces(MediaType.APPLICATION_JSON)
@ApiOperation(value = "message", notes = "a nice hello", response = Message.class)
public Message message() {
logger.info("My Things {}", exampleServiceProps.getMyThings().get());
return new Message(exampleServiceProps.getDefaultMessage().get());
}