@GET
@Path("permalink/{permalink}")
@Produces(MediaType.APPLICATION_JSON)
public CustomerPojoResponse getCustomerByPermalink(@PathParam("permalink") final String permalink) {
CustomerPojoResponse customerPojoResponse = new CustomerPojoResponse();
CustomerPojo customerPojo = customerPojoService.getCustomerByPermalink(permalink);
customerPojoResponse.setCustomerPojo(customerPojo);
return customerPojoResponse;
}