38394041424344454647
@Produces("application/json") @ApiOperation( value = "Gets the owner of a pet", response = Owner.class) public Owner getOwner() throws NotFoundException { Owner o = new Owner(); o.setName("Tony"); o.setId(1); return o; }