api/src/main/java/org/apache/fineract/cn/teller/api/v1/domain/Teller.java [81:126]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public BigDecimal getCashdrawLimit() {
    return this.cashdrawLimit;
  }

  public void setCashdrawLimit(final BigDecimal cashdrawLimit) {
    this.cashdrawLimit = cashdrawLimit;
  }

  public String getTellerAccountIdentifier() {
    return this.tellerAccountIdentifier;
  }

  public void setTellerAccountIdentifier(final String tellerAccountIdentifier) {
    this.tellerAccountIdentifier = tellerAccountIdentifier;
  }

  public String getVaultAccountIdentifier() {
    return this.vaultAccountIdentifier;
  }

  public void setVaultAccountIdentifier(final String vaultAccountIdentifier) {
    this.vaultAccountIdentifier = vaultAccountIdentifier;
  }

  public String getChequesReceivableAccount() {
    return this.chequesReceivableAccount;
  }

  public void setChequesReceivableAccount(final String chequesReceivableAccount) {
    this.chequesReceivableAccount = chequesReceivableAccount;
  }

  public String getCashOverShortAccount() {
    return this.cashOverShortAccount;
  }

  public void setCashOverShortAccount(final String cashOverShortAccount) {
    this.cashOverShortAccount = cashOverShortAccount;
  }

  public Boolean getDenominationRequired() {
    return this.denominationRequired;
  }

  public void setDenominationRequired(final Boolean denominationRequired) {
    this.denominationRequired = denominationRequired;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



service/src/main/java/org/apache/fineract/cn/teller/service/internal/repository/TellerEntity.java [125:170]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public BigDecimal getCashdrawLimit() {
    return this.cashdrawLimit;
  }

  public void setCashdrawLimit(final BigDecimal cashdrawLimit) {
    this.cashdrawLimit = cashdrawLimit;
  }

  public String getTellerAccountIdentifier() {
    return this.tellerAccountIdentifier;
  }

  public void setTellerAccountIdentifier(final String tellerAccountIdentifier) {
    this.tellerAccountIdentifier = tellerAccountIdentifier;
  }

  public String getVaultAccountIdentifier() {
    return this.vaultAccountIdentifier;
  }

  public void setVaultAccountIdentifier(final String vaultAccountIdentifier) {
    this.vaultAccountIdentifier = vaultAccountIdentifier;
  }

  public String getChequesReceivableAccount() {
    return this.chequesReceivableAccount;
  }

  public void setChequesReceivableAccount(final String chequesReceivableAccount) {
    this.chequesReceivableAccount = chequesReceivableAccount;
  }

  public String getCashOverShortAccount() {
    return this.cashOverShortAccount;
  }

  public void setCashOverShortAccount(final String cashOverShortAccount) {
    this.cashOverShortAccount = cashOverShortAccount;
  }

  public Boolean getDenominationRequired() {
    return this.denominationRequired;
  }

  public void setDenominationRequired(final Boolean denominationRequired) {
    this.denominationRequired = denominationRequired;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



