Interface ModelUsers


public interface ModelUsers
ModelUsers, version : 1.0.0 author: fugerit warning!: auto generated object, insert custom code only between comments : // custom code start ( code above here will be overwritten ) // custom code end ( code below here will be overwritten )
  • Method Summary

    Modifier and Type
    Method
    Description
    Getter method for property : id (nullable: no) User system id
    Getter method for property : lastLogin (nullable: yes) Time of last user login
    Getter method for property : password (nullable: no) Password hash
    Getter method for property : state (nullable: no) 1 active, 0 not active
    Getter method for property : username (nullable: no) User chosen id
    void
    Setter method for property : id (nullable: no) User system id
    void
    Setter method for property : lastLogin (nullable: yes) Time of last user login
    void
    Setter method for property : password (nullable: no) Password hash
    void
    Setter method for property : state (nullable: no) 1 active, 0 not active
    void
    Setter method for property : username (nullable: no) User chosen id
  • Method Details

    • getId

      BigDecimal getId()
      Getter method for property : id (nullable: no) User system id
      Returns:
      the value of id
    • setId

      void setId(BigDecimal value)
      Setter method for property : id (nullable: no) User system id
      Parameters:
      value - the value of id
    • getUsername

      String getUsername()
      Getter method for property : username (nullable: no) User chosen id
      Returns:
      the value of username
    • setUsername

      void setUsername(String value)
      Setter method for property : username (nullable: no) User chosen id
      Parameters:
      value - the value of username
    • getPassword

      String getPassword()
      Getter method for property : password (nullable: no) Password hash
      Returns:
      the value of password
    • setPassword

      void setPassword(String value)
      Setter method for property : password (nullable: no) Password hash
      Parameters:
      value - the value of password
    • getLastLogin

      Date getLastLogin()
      Getter method for property : lastLogin (nullable: yes) Time of last user login
      Returns:
      the value of lastLogin
    • setLastLogin

      void setLastLogin(Date value)
      Setter method for property : lastLogin (nullable: yes) Time of last user login
      Parameters:
      value - the value of lastLogin
    • getState

      BigDecimal getState()
      Getter method for property : state (nullable: no) 1 active, 0 not active
      Returns:
      the value of state
    • setState

      void setState(BigDecimal value)
      Setter method for property : state (nullable: no) 1 active, 0 not active
      Parameters:
      value - the value of state