Sfoglia il codice sorgente

[회원가입][Bug] 불필요 bean 제거

hyodong.min 7 anni fa
parent
commit
e10a52d7aa

+ 0 - 30
app/src/main/java/kr/co/zumo/app/lifeplus/bean/SignUpButtonBean.java

@@ -1,30 +0,0 @@
-/*
- * COPYRIGHT (c) 2018 All rights reserved by HANWHA LIFE.
- */
-package kr.co.zumo.app.lifeplus.bean;
-
-/**
- * SignUpButtonBean
- * <pre>
- * </pre>
- *
- * @author 민효동
- * @version 1.0
- * @history 민효동   [2018. 9. 12.]   [최초 작성]
- * @since 2018. 9. 12.
- */
-public class SignUpButtonBean extends TextBean {
-
-  private final int buttonId;
-
-  public SignUpButtonBean(String text, int buttonId) {
-    super(text);
-
-    this.buttonId = buttonId;
-  }
-
-  public int getButtonId() {
-    return buttonId;
-  }
-
-}

+ 0 - 43
app/src/main/java/kr/co/zumo/app/lifeplus/bean/SignUpCoinBean.java

@@ -1,43 +0,0 @@
-/*
- * COPYRIGHT (c) 2018 All rights reserved by HANWHA LIFE.
- */
-package kr.co.zumo.app.lifeplus.bean;
-
-import android.support.annotation.DrawableRes;
-
-/**
- * SignUpCoinBean
- * <pre>
- * </pre>
- *
- * @author 민효동
- * @version 1.0
- * @history 민효동   [2018. 9. 12.]   [최초 작성]
- * @since 2018. 9. 12.
- */
-public class SignUpCoinBean extends TextBean {
-
-  @DrawableRes
-  protected int couponImage;
-
-
-  public SignUpCoinBean(String text, int couponImage) {
-    super(text);
-    this.couponImage = couponImage;
-
-  }
-
-
-
-  public int getCouponImage() {
-    return couponImage;
-  }
-
-  public void setCouponImage(int couponImage) {
-    this.couponImage = couponImage;
-  }
-
-  public SignUpCoinBean(String text) {
-    super(text);
-  }
-}

+ 0 - 20
app/src/main/java/kr/co/zumo/app/lifeplus/bean/SignUpNoticeBean.java

@@ -1,20 +0,0 @@
-/*
- * COPYRIGHT (c) 2018 All rights reserved by HANWHA LIFE.
- */
-package kr.co.zumo.app.lifeplus.bean;
-
-/**
- * SignUpNoticeBean
- * <pre>
- * </pre>
- *
- * @author 민효동
- * @version 1.0
- * @history 민효동   [2018. 9. 12.]   [최초 작성]
- * @since 2018. 9. 12.
- */
-public class SignUpNoticeBean extends TextBean {
-  public SignUpNoticeBean(String text) {
-    super(text);
-  }
-}

+ 0 - 20
app/src/main/java/kr/co/zumo/app/lifeplus/bean/SignUpTermsBean.java

@@ -1,20 +0,0 @@
-/*
- * COPYRIGHT (c) 2018 All rights reserved by HANWHA LIFE.
- */
-package kr.co.zumo.app.lifeplus.bean;
-
-/**
- * SignUpTermsBean
- * <pre>
- * </pre>
- *
- * @author 민효동
- * @version 1.0
- * @history 민효동   [2018. 9. 12.]   [최초 작성]
- * @since 2018. 9. 12.
- */
-public class SignUpTermsBean extends TextBean {
-  public SignUpTermsBean(String text) {
-    super(text);
-  }
-}

+ 0 - 32
app/src/main/java/kr/co/zumo/app/lifeplus/bean/SignUpTextWithTitleBean.java

@@ -1,32 +0,0 @@
-/*
- * COPYRIGHT (c) 2018 All rights reserved by HANWHA LIFE.
- */
-package kr.co.zumo.app.lifeplus.bean;
-
-/**
- * SignUpTextWithTitleBean
- * <pre>
- * </pre>
- *
- * @author 민효동
- * @version 1.0
- * @history 민효동   [2018. 9. 12.]   [최초 작성]
- * @since 2018. 9. 12.
- */
-public class SignUpTextWithTitleBean extends TextBean {
-
-  String title;
-
-  public SignUpTextWithTitleBean(String text) {
-    super(text);
-  }
-
-  public SignUpTextWithTitleBean(String title , String text) {
-    super(text);
-    this.title = title;
-  }
-
-  public String getTitle() {
-    return title;
-  }
-}

+ 0 - 20
app/src/main/java/kr/co/zumo/app/lifeplus/bean/SignUpTwoButtonBean.java

@@ -1,20 +0,0 @@
-/*
- * COPYRIGHT (c) 2018 All rights reserved by HANWHA LIFE.
- */
-package kr.co.zumo.app.lifeplus.bean;
-
-/**
- * SignUpTwoButtonBean
- * <pre>
- * </pre>
- *
- * @author 민효동
- * @version 1.0
- * @history 민효동   [2018. 9. 12.]   [최초 작성]
- * @since 2018. 9. 12.
- */
-public class SignUpTwoButtonBean extends TextBean {
-  public SignUpTwoButtonBean(String text) {
-    super(text);
-  }
-}

+ 0 - 20
app/src/main/java/kr/co/zumo/app/lifeplus/bean/SignUpWaitingBean.java

@@ -1,20 +0,0 @@
-/*
- * COPYRIGHT (c) 2018 All rights reserved by HANWHA LIFE.
- */
-package kr.co.zumo.app.lifeplus.bean;
-
-/**
- * SignUpWaitingBean
- * <pre>
- * </pre>
- *
- * @author 민효동
- * @version 1.0
- * @history 민효동   [2018. 9. 12.]   [최초 작성]
- * @since 2018. 9. 12.
- */
-public class SignUpWaitingBean extends TextBean {
-  public SignUpWaitingBean(String text) {
-    super(text);
-  }
-}