Class UserInfo

java.lang.Object
com.bhn.risk.order.domain.UserInfo

public class UserInfo extends Object

UserInfo class.

Version:
$Id: $Id
Author:
pvela00
  • Field Details

    • accountId

      @NotBlank(errorCode="user.accountId.blank", message="user.accountId cannot be blank") public String accountId
    • firstName

      @NotBlank(errorCode="user.firstName.blank", message="user.firstName cannot be blank") public String firstName
    • lastName

      @NotBlank(errorCode="user.lastName.blank", message="user.lastName cannot be blank") public String lastName
    • phoneNumber

      @NotBlank(errorCode="user.phoneNumber.blank", message="user.phoneNumber cannot be blank") public String phoneNumber
    • emailAddress

      @NotBlank(errorCode="user.emailAddress.blank", message="user.emailAddress cannot be blank") @Length(max=255, errorCode="user.emailAddress.invalidLength", message="Max length of user.emailAddress is 255 characters") public String emailAddress
    • existingCustomer

      @NotBlank(errorCode="user.existingCustomer.blank", message="user.existingCustomer cannot be blank") public Boolean existingCustomer
    • accountAgeInMonths

      @NotBlank(errorCode="user.accountAgeInMonths.blank", message="user.accountAgeInMonths cannot be blank") @Min(value=0.0, errorCode="user.accountAgeInMonths.invalid", message="user.accountAgeInMonths should be minimum 0") public Integer accountAgeInMonths
    • isSenior

      @NotBlank(errorCode="user.isSenior.blank", message="user.isSenior cannot be blank") public Boolean isSenior
    • rewardPointsBalance

      @NotBlank(errorCode="user.rewardPointsBalance.blank", message="user.rewardPointsBalance cannot be blank") @Min(value=0.0, errorCode="user.rewardPointsBalance.invalid", message="user.rewardPointsBalance should be minimum 0") public Double rewardPointsBalance
    • maxRewardPointsBalance

      @NotBlank(errorCode="user.maxRewardPointsBalance.blank", message="user.maxRewardPointsBalance cannot be blank") @Min(value=0.0, errorCode="user.maxRewardPointsBalance.invalid", message="user.maxRewardPointsBalance should be minimum 0") public Double maxRewardPointsBalance
    • hoursSincePreviousSuccessfulLogin

      @NotBlank(errorCode="user.hoursSincePreviousSuccessfulLogin.blank", message="user.hoursSincePreviousSuccessfulLogin cannot be blank") @Min(value=0.0, errorCode="user.hoursSincePreviousSuccessfulLogin.invalid", message="user.hoursSincePreviousSuccessfulLogin should be minimum 0") public Integer hoursSincePreviousSuccessfulLogin
    • hoursSincePreviousFailedLogin

      @NotBlank(errorCode="user.hoursSincePreviousFailedLogin.blank", message="user.hoursSincePreviousFailedLogin cannot be blank") @Min(value=0.0, errorCode="user.hoursSincePreviousFailedLogin.invalid", message="user.hoursSincePreviousFailedLogin should be minimum 0") public Integer hoursSincePreviousFailedLogin
    • failedLoginsInLast30Days

      @NotBlank(errorCode="user.failedLoginsInLast30Days.blank", message="user.failedLoginsInLast30Days cannot be blank") @Min(value=0.0, errorCode="user.failedLoginsInLast30Days.invalid", message="user.failedLoginsInLast30Days should be minimum 0") public Integer failedLoginsInLast30Days
    • hoursSinceLastPasswordReset

      @NotBlank(errorCode="user.hoursSinceLastPasswordReset.blank", message="user.hoursSinceLastPasswordReset cannot be blank") @Min(value=0.0, errorCode="user.hoursSinceLastPasswordReset.invalid", message="user.hoursSinceLastPasswordReset should be minimum 0") public Integer hoursSinceLastPasswordReset
    • hoursSinceLastPhoneNumberUpdate

      @NotBlank(errorCode="user.hoursSinceLastPhoneNumberUpdate.blank", message="user.hoursSinceLastPhoneNumberUpdate cannot be blank") @Min(value=0.0, errorCode="user.hoursSinceLastPhoneNumberUpdate.invalid", message="user.hoursSinceLastPhoneNumberUpdate should be minimum 0") public Integer hoursSinceLastPhoneNumberUpdate
    • hoursSinceLastEmailAddressUpdate

      @NotBlank(errorCode="user.hoursSinceLastEmailAddressUpdate.blank", message="user.hoursSinceLastEmailAddressUpdate cannot be blank") @Min(value=0.0, errorCode="user.hoursSinceLastEmailAddressUpdate.invalid", message="user.hoursSinceLastEmailAddressUpdate should be minimum 0") public Integer hoursSinceLastEmailAddressUpdate
    • hoursSinceLastBillingAddressUpdate

      @NotBlank(errorCode="user.hoursSinceLastBillingAddressUpdate.blank", message="user.hoursSinceLastBillingAddressUpdate cannot be blank") @Min(value=0.0, errorCode="user.hoursSinceLastBillingAddressUpdate.invalid", message="user.hoursSinceLastBillingAddressUpdate should be minimum 0") public Integer hoursSinceLastBillingAddressUpdate
    • sessionLengthInSeconds

      @NotBlank(errorCode="user.sessionLengthInSeconds.blank", message="user.sessionLengthInSeconds cannot be blank") @Min(value=0.0, errorCode="user.sessionLengthInSeconds.invalid", message="user.sessionLengthInSeconds should be minimum 0") public Integer sessionLengthInSeconds
    • accountMFAEnabled

      @NotBlank(errorCode="user.accountMFAEnabled.blank", message="user.accountMFAEnabled cannot be blank") public Boolean accountMFAEnabled
    • numOfCardHolders

      @NotBlank(errorCode="user.numOfCardHolders.blank", message="user.numOfCardHolders cannot be blank") @Min(value=0.0, errorCode="user.numOfCardHolders.invalid", message="user.numOfCardHolders should be minimum 0") public Integer numOfCardHolders
    • creditLimitUtilization

      @NotBlank(errorCode="user.creditLimitUtilization.blank", message="user.creditLimitUtilization cannot be blank") @Min(value=0.0, errorCode="user.creditLimitUtilization.invalid", message="user.creditLimitUtilization should be minimum 0") public Integer creditLimitUtilization
    • numberOfPastPurchases

      @NotBlank(errorCode="user.numberOfPastPurchases.blank", message="user.numberOfPastPurchases cannot be blank") @Min(value=0.0, errorCode="user.numberOfPastPurchases.invalid", message="user.numberOfPastPurchases should be minimum 0") public Integer numberOfPastPurchases
    • numberOfPastDisputes

      @NotBlank(errorCode="user.numberOfPastDisputes.blank", message="user.numberOfPastDisputes cannot be blank") @Min(value=0.0, errorCode="user.numberOfPastDisputes.invalid", message="user.numberOfPastDisputes should be minimum 0") public Integer numberOfPastDisputes
    • numberOfReturns

      @NotBlank(errorCode="user.numberOfReturns.blank", message="user.numberOfReturns cannot be blank") @Min(value=0.0, errorCode="user.numberOfReturns.invalid", message="user.numberOfReturns should be minimum 0") public Integer numberOfReturns
    • daysSinceLastPurchase

      @NotBlank(errorCode="user.daysSinceLastPurchase.blank", message="user.daysSinceLastPurchase cannot be blank") @Min(value=0.0, errorCode="user.daysSinceLastPurchase.invalid", message="user.daysSinceLastPurchase should be minimum 0") public Integer daysSinceLastPurchase
  • Constructor Details

    • UserInfo

      public UserInfo()