JathinSanghvi
JathinSanghvi
any updates on this one?
Atleast there should be an option to have ip instead of guid as done in older versions. This is breaking lots of functionality. Current implementations makes it really tough to...
same with minimum and maximum.. fix should be for all. +1 to fix it
``` @GET @Path("/petstore/{storeid}/pet/{petid}") @Produces({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML}) public Physician getPet(@ApiParam @DefaultValue(value="0") @Min(0) @PathParam("storeid") int enterpriseid, @ApiParam @Min(value=1000000000) @PathParam("petid") int npi, @ApiParam @DefaultValue(value="false") @QueryParam("refresh") boolean refresh); ``` The above jaxrs 2.0 resource method...