|
|
@ -221,12 +221,12 @@ public class XitFrameUnitServiceBean extends AbstractServiceBean implements XitF
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@Override
|
|
|
|
public void modifyUserPasswordByUserSe(USER_SE user_se, String id, String password) {
|
|
|
|
public void modifyUserPassword(String uniqid, String password) {
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 필수값 확인
|
|
|
|
* 필수값 확인
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
if (XitCmmnUtil.isEmpty(id))
|
|
|
|
if (XitCmmnUtil.isEmpty(uniqid))
|
|
|
|
throw new RuntimeException("아이디(은)는 필수조건 입니다.");
|
|
|
|
throw new RuntimeException("아이디(은)는 필수조건 입니다.");
|
|
|
|
if (XitCmmnUtil.isEmpty(password))
|
|
|
|
if (XitCmmnUtil.isEmpty(password))
|
|
|
|
throw new RuntimeException("비밀번호(은)는 필수조건 입니다.");
|
|
|
|
throw new RuntimeException("비밀번호(은)는 필수조건 입니다.");
|
|
|
@ -234,22 +234,11 @@ public class XitFrameUnitServiceBean extends AbstractServiceBean implements XitF
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 처리
|
|
|
|
* 처리
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
switch (user_se) {
|
|
|
|
|
|
|
|
case GNR: // 일반회원
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ENT: // 기업회원
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case USR: // 업무사용자
|
|
|
|
|
|
|
|
XitUserInfoVO userUsrVO = new XitUserInfoVO();
|
|
|
|
XitUserInfoVO userUsrVO = new XitUserInfoVO();
|
|
|
|
userUsrVO.setUserId(id);
|
|
|
|
userUsrVO.setUserId(uniqid);
|
|
|
|
userUsrVO.setPasswd(password);
|
|
|
|
userUsrVO.setPasswd(password);
|
|
|
|
xitFrameCrudService.modifyXitUserInfo(userUsrVO);
|
|
|
|
xitFrameCrudService.modifyXitUserInfo(userUsrVO);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|