|
|
@@ -455,6 +455,7 @@ public class TsfCustomerController extends TsfBaseController {
|
|
|
* @param encodeData - 휴대폰인증에서 전달받은 인증결과 암호화 데이터 취득
|
|
|
* @param encData - 아이핀에서 전달받은 인증결과 암호화 데이터 취득
|
|
|
* @param redirectUrl - 모바일은 호출한 URL 암호화 데이터 전달
|
|
|
+ * @param custParams - 회원가입시 입력 받았던 내용 다시 받음
|
|
|
* @return ModelAndView
|
|
|
* @author jsshin
|
|
|
* @since 2021. 02. 09
|
|
|
@@ -762,8 +763,9 @@ public class TsfCustomerController extends TsfBaseController {
|
|
|
* @since 2021. 03. 08
|
|
|
*/
|
|
|
@RequestMapping("/dormant/certify/form")
|
|
|
- public ModelAndView getDormantCeirtyForm(@RequestParam(value = "sEncData", required = false) String sEncData, @RequestParam(value = "authMethod", required = false) String authMethod, @RequestParam(value = "custParams", required = false) String custParams) {
|
|
|
-
|
|
|
+ public ModelAndView getDormantCeirtyForm(@RequestParam(value = "sEncData", required = false) String sEncData
|
|
|
+ , @RequestParam(value = "authMethod", required = false) String authMethod
|
|
|
+ , @RequestParam(value = "custParams", required = false) String custParams) {
|
|
|
ModelAndView mav = new ModelAndView();
|
|
|
|
|
|
// http 에서는 Same-Site None 설정이 안되므로 아래와 같이 처리
|
|
|
@@ -836,8 +838,9 @@ public class TsfCustomerController extends TsfBaseController {
|
|
|
* @since 2021. 03. 10
|
|
|
*/
|
|
|
@RequestMapping("/certification/form")
|
|
|
- public ModelAndView getCertificationForm(@RequestParam(value = "sEncData", required = false) String sEncData, @RequestParam(value = "authMethod", required = false) String authMethod, @RequestParam(value = "custParams", required = false) String custParams) {
|
|
|
-
|
|
|
+ public ModelAndView getCertificationForm(@RequestParam(value = "sEncData", required = false) String sEncData
|
|
|
+ , @RequestParam(value = "authMethod", required = false) String authMethod
|
|
|
+ , @RequestParam(value = "custParams", required = false) String custParams) {
|
|
|
ModelAndView mav = new ModelAndView();
|
|
|
|
|
|
// http 에서는 Same-Site None 설정이 안되므로 아래와 같이 처리
|