@PUT
@Path("wishlist")
@Consumes(MediaType.APPLICATION_JSON)
public AddToWishlistPojoResponse addProductSkuToWishlist(final AddToWishlistPojoRequest addToWishlistPojoRequest) throws Exception {
AddToWishlistPojoResponse addToWishlistPojoResponse = new AddToWishlistPojoResponse();
Authentication authentication = SecurityContextHolder.getContext().getAuthentication();
if (!(authentication instanceof AnonymousAuthenticationToken)) {
String currentCustomerName = authentication.getName();