package com.prime.sony.ecommerce.controller;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping(value = "/DeleteRequest", produces = { MediaType.APPLICATION_JSON_VALUE })
public class DeleteRequestController {

	private static final Logger log = LoggerFactory.getLogger(DeleteRequestController.class);

	

}
