|
|
@@ -2,6 +2,8 @@ package kr.co.zumo.app.lifeplus.view.dialog;
|
|
|
|
|
|
import android.util.Log;
|
|
|
|
|
|
+import java.util.Calendar;
|
|
|
+
|
|
|
import kr.co.zumo.app.lifeplus.view.presenter.bean.SignUpUserBean;
|
|
|
|
|
|
/**
|
|
|
@@ -23,6 +25,12 @@ public class MobileAuthorizationPresenter {
|
|
|
this.view = iMobileAuthorizationDialog;
|
|
|
}
|
|
|
|
|
|
+ protected IDialogResultListener resultListener;
|
|
|
+
|
|
|
+ public void setResultListener(IDialogResultListener resultListener) {
|
|
|
+ this.resultListener = resultListener;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* name 필드의 입력시 호출
|
|
|
*
|
|
|
@@ -166,24 +174,24 @@ public class MobileAuthorizationPresenter {
|
|
|
/**
|
|
|
* 인증 확인 버튼 클릭, 인증 번호 확인 후 가입 완료.
|
|
|
*/
|
|
|
- public void onIdentifyConfirmButtonClick() {
|
|
|
+ public void onAuthorizationConfirmButtonClick() {
|
|
|
String authorizedNumber = userBean.getAuthorizedNumber();
|
|
|
- Log.e("APP# MobileAuthorizationPresenter | onIdentifyConfirmButtonClick", "|" + "click");
|
|
|
+ Log.e("APP# MobileAuthorizationPresenter | onAuthorizationConfirmButtonClick", "|" + "click");
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 인증번호 발송 버튼 클릭, 인증 번호 발송 전 user 정보 data 준비.
|
|
|
*/
|
|
|
- public void onIdentifyNumberSendButtonClick() {
|
|
|
+ public void onAuthorizationNumberSendButtonClick() {
|
|
|
view.onIdentifyNumberSendButtonClick();
|
|
|
- Log.e("APP# MobileAuthorizationPresenter | onIdentifyNumberSendButtonClick", "|" + userBean.toJson());
|
|
|
+ Log.e("APP# MobileAuthorizationPresenter | onAuthorizationNumberSendButtonClick", "|" + userBean.toJson());
|
|
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 인증번호 시간 지연 버튼 클릭
|
|
|
*/
|
|
|
- public void onIdentifyTimeDelayButtonClick() {
|
|
|
+ public void onAuthorizationTimeDelayButtonClick() {
|
|
|
|
|
|
}
|
|
|
}
|