@Path("/{id}")
 @GET
 @Produces(javax.ws.rs.core.MediaType.APPLICATION_JSON)
 @ApiOperation(
     value = "Get list of specific company",
     httpMethod = "GET",
     notes = "Fetch the details of specific company")
 public CompanyBO getCompany(
     @ApiParam(name = "id", value = "id of the company", required = true) @PathParam("id")
         long companyId) {
   return companyServiceImpl.getCompany(companyId);
 }