|
|
|
@ -1,10 +1,7 @@
|
|
|
|
|
package kr.xit.biz.mbl.service;
|
|
|
|
|
|
|
|
|
|
import kr.xit.biz.ens.model.kakao.KkopayDocDTO;
|
|
|
|
|
import kr.xit.biz.ens.model.kt.KtCommonDTO.KtCommonResponse;
|
|
|
|
|
import kr.xit.biz.ens.model.kt.KtTokenDTO;
|
|
|
|
|
import kr.xit.biz.ens.model.kt.KtTokenDTO.KtTokenConfirmResponse;
|
|
|
|
|
import kr.xit.biz.ens.model.kt.KtTokenDTO.KtTokenReadRequest;
|
|
|
|
|
import kr.xit.biz.mbl.mapper.IMobilePageMapper;
|
|
|
|
|
import kr.xit.biz.mbl.model.MobilePageDTO.MobilePageManage;
|
|
|
|
|
import kr.xit.core.consts.ErrorCode;
|
|
|
|
@ -88,6 +85,11 @@ public class MobilePageService extends EgovAbstractServiceImpl implements IMobil
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public MobilePageManage findKtMblPage(final KtTokenDTO.KtTokenConfirmRequest reqDTO) {
|
|
|
|
|
//TODO::테스트
|
|
|
|
|
return mapper.selectKtMobilePage("srcKey");
|
|
|
|
|
|
|
|
|
|
//TODO::실운영시 코멘트 제거
|
|
|
|
|
/*
|
|
|
|
|
if (Checks.isEmpty(reqDTO.getAccessToken()))
|
|
|
|
|
throw BizRuntimeException.create(String.valueOf(ErrorCode.BAD_REQUEST.getHttpStatus().value()), "정상적인 요청이 아닙니다. 재인증 후 시도하시기 바랍니다.");
|
|
|
|
|
|
|
|
|
@ -106,12 +108,12 @@ public class MobilePageService extends EgovAbstractServiceImpl implements IMobil
|
|
|
|
|
|
|
|
|
|
if(readRes.getResultCd().equals("00")){
|
|
|
|
|
String srcKey = cfmRes.getSrcKey();
|
|
|
|
|
//TODO:: srckey로 컨텐츠 조회후 결과 return
|
|
|
|
|
return mapper.selectKtMobilePage(srcKey);
|
|
|
|
|
}
|
|
|
|
|
throw BizRuntimeException.create(readRes.getResultCd(), readRes.toStringErrorMsg());
|
|
|
|
|
}
|
|
|
|
|
throw BizRuntimeException.create(cfmRes.getResultCd(), cfmRes.toStringErrorMsg());
|
|
|
|
|
*/
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|