@GET
@Path("{code}")
@Produces(MediaType.APPLICATION_JSON)
public RetailerPojoResponse getRetailerByCode(@PathParam("code") final String code) {
RetailerPojoResponse retailerPojoResponse = new RetailerPojoResponse();
RetailerPojo retailerPojo = retailerService.getRetailerByCode(code);
retailerPojoResponse.setRetailer(retailerPojo);
return retailerPojoResponse;
}