Record Class User

java.lang.Object
java.lang.Record
com.avoka.tm.vo.v1.User

public record User(String loginName, String userKey, String givenName, String familyName, String email, String mobile, List<String> groups, Map<String,Object> prefs, Map<String,Object> profiles, List<Map<String,Object>> roles) extends Record
User Object Model
Since:
24.10.0
  • Constructor Details

    • User

      public User(com.avoka.fc.core.entity.UserAccount userAccount, com.avoka.fc.core.entity.Portal portal)
    • User

      public User(String loginName, String userKey, String givenName, String familyName, String email, String mobile, List<String> groups, Map<String,Object> prefs, Map<String,Object> profiles, List<Map<String,Object>> roles)
      Creates an instance of a User record class.
      Parameters:
      loginName - the value for the loginName record component
      userKey - the value for the userKey record component
      givenName - the value for the givenName record component
      familyName - the value for the familyName record component
      email - the value for the email record component
      mobile - the value for the mobile record component
      groups - the value for the groups record component
      prefs - the value for the prefs record component
      profiles - the value for the profiles record component
      roles - the value for the roles record component
  • Method Details

    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • loginName

      public String loginName()
      Returns the value of the loginName record component.
      Returns:
      the value of the loginName record component
    • userKey

      public String userKey()
      Returns the value of the userKey record component.
      Returns:
      the value of the userKey record component
    • givenName

      public String givenName()
      Returns the value of the givenName record component.
      Returns:
      the value of the givenName record component
    • familyName

      public String familyName()
      Returns the value of the familyName record component.
      Returns:
      the value of the familyName record component
    • email

      public String email()
      Returns the value of the email record component.
      Returns:
      the value of the email record component
    • mobile

      public String mobile()
      Returns the value of the mobile record component.
      Returns:
      the value of the mobile record component
    • groups

      public List<String> groups()
      Returns the value of the groups record component.
      Returns:
      the value of the groups record component
    • prefs

      public Map<String,Object> prefs()
      Returns the value of the prefs record component.
      Returns:
      the value of the prefs record component
    • profiles

      public Map<String,Object> profiles()
      Returns the value of the profiles record component.
      Returns:
      the value of the profiles record component
    • roles

      public List<Map<String,Object>> roles()
      Returns the value of the roles record component.
      Returns:
      the value of the roles record component