jp.mosp.common.dto
クラス CtAccountDto

java.lang.Object
  上位を拡張 jp.mosp.common.common.BaseDto
      上位を拡張 jp.mosp.common.dto.CtAccountDto
すべての実装されたインタフェース:
Serializable

public class CtAccountDto
extends BaseDto

アカウントテーブルのレコードを格納する。

CtAccountDaoを介して、DBとJavaプログラム間でレコードを共有する。
アカウントテーブルのカラムに対応するアクセサメソッドを提供する。

関連項目:
直列化された形式

コンストラクタの概要
CtAccountDto()
          コンストラクタ
 
メソッドの概要
 int getAttempt()
          試行回数を取得する。
 String getUserId()
          ユーザーIDを取得する。
 void incrementAttempt()
          更新回数インクリメント。
 void setAttempt(int attempt)
          試行回数を設定する。
 void setUserId(String userId)
          ユーザーIDを設定する。
 
クラス jp.mosp.common.common.BaseDto から継承されたメソッド
getDateField, getInsertDate, getInsertUser, getUpdateDate, getUpdateUser, setInsertDate, setInsertUser, setUpdateDate, setUpdateUser
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

CtAccountDto

public CtAccountDto()
コンストラクタ

メソッドの詳細

getUserId

public String getUserId()
ユーザーIDを取得する。

戻り値:
ユーザーID

setUserId

public void setUserId(String userId)
ユーザーIDを設定する。

パラメータ:
userId - ユーザーID

getAttempt

public int getAttempt()
試行回数を取得する。

戻り値:
試行回数

setAttempt

public void setAttempt(int attempt)
試行回数を設定する。

パラメータ:
attempt - 試行回数

incrementAttempt

public void incrementAttempt()
更新回数インクリメント。
更新回数に1を加算する(最大99)。