package com.prime.sony.ecommerce.controller;

import java.util.Map;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import com.prime.sony.ecommerce.exceptions.TaskStatusServiceException;
import com.prime.sony.ecommerce.service.TaskStatusService;

@RestController
@RequestMapping(value = "/taskStatus", produces = { MediaType.APPLICATION_JSON_VALUE })
public class TaskStatusController {

	private static final Logger log = LoggerFactory.getLogger(TaskStatusController.class);

	

}
