You have two options:
1) put @JsonSerialize
annotation on your interface (see @broc.seib answer)
2) or use specific writer for the serialization (as of Jackson 2.9.6):
ObjectMapper mapper = new ObjectMapper();
String str = mapper.writerFor(Interf.class).writeValueAsString(interf);