미사용 컨트롤러 제거(수집서버 요청 컨트롤러)

main
이범준 6 months ago
parent 28ee640fa4
commit 56090ea410

@ -1,99 +0,0 @@
package cfs.trsmrcv.web;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
import cfs.common.service.CfsCommonService;
import cfs.common.util.CallWebService;
import cfs.common.util.ResultSmartPlatform;
import cfs.trsmrcv.dao.TrsmrcvDao;
import cfs.trsmrcv.service.CommSmartPlatformPRPService;
@Controller
public class CommCollectServerController {
protected Logger logger = LoggerFactory.getLogger(this.getClass());
@Resource(name = "commSmartPlatformPRPService")
private CommSmartPlatformPRPService commSmartPlatformPRPService;
@Resource(name="cfsCommonService")
private CfsCommonService cfsCommonService;
@Resource(name="trsmrcvDao")
private TrsmrcvDao trsmrcvDao;
/**
* ( 1( ))
* <pre></pre>
*/
@RequestMapping(value = "/rest/broker/brs/getManychild.do", method = RequestMethod.POST)
public @ResponseBody Map<String, Object> callPreManychild(
@RequestBody Map<String, Object> param, HttpServletRequest request) throws Exception {
ResultSmartPlatform result = new ResultSmartPlatform();
result.setMsg(ResultSmartPlatform.STATUS_SUCESS, "정상적으로 처리되었습니다.");
return result.getResult();
}
/**
* ( 2( /))
* <pre></pre>
*/
@RequestMapping(value = "/cfs/trsmrcv/getChgManychild.do", method = RequestMethod.POST)
public @ResponseBody Map<String, Object> getChgManychild(@RequestBody Map<String, Object> param, HttpServletRequest request) throws Exception {
ResultSmartPlatform result = new ResultSmartPlatform();
result.setMsg(ResultSmartPlatform.STATUS_SUCESS, "정상적으로 처리되었습니다.");
return result.getResult();
}
/**
* ( ( ))
* <pre></pre>
*/
@RequestMapping(value = "/rest/broker/fis/getRdcxptInfoDspsnVhcle.do", method = RequestMethod.POST)
public @ResponseBody Map<String, Object> callRdcxptInfoDspsn(@RequestBody Map<String, Object> param, HttpServletRequest request) throws Exception {
ResultSmartPlatform result = new ResultSmartPlatform();
result.setMsg(ResultSmartPlatform.STATUS_SUCESS, "정상적으로 처리되었습니다.");
return result.getResult();
}
/**
* ( ( ))
* <pre></pre>
*/
@RequestMapping(value = "/rest/broker/fis/getRdcxptInfoNtttnVhcle.do", method = RequestMethod.POST)
public @ResponseBody Map<String, Object> callRdcxptInfoNtttn(@RequestBody Map<String, Object> param, HttpServletRequest request) throws Exception {
ResultSmartPlatform result = new ResultSmartPlatform();
result.setMsg(ResultSmartPlatform.STATUS_SUCESS, "정상적으로 처리되었습니다.");
return result.getResult();
}
}
Loading…
Cancel
Save