Class UserName

java.lang.Object
byps.BValueClass
de.elo.ix.client.ValueClass
de.elo.ix.client.UserName
All Implemented Interfaces:
Serializable

public class UserName extends ValueClass implements Serializable

Contains user name, ID and type (group or user).

Copyright: Copyright (c) 2004

Organisation: ELO Digital Office GmbH

See Also:
  • Field Details

    • id

      protected int id
      User ID
    • name

      protected String name
      User name.
    • guid

      protected String guid
      User GUID.
      Since:
      12.00.000.031
    • type

      protected int type
      User type.
      See Also:
    • flags

      protected int flags
      User rights. To detect a suspended user, test bit AccessC.FLAG_NOLOGIN.
      Since:
      7.00.000.020
      See Also:
    • flags2

      protected int flags2
      User rights, second set. This member is a bit set of AccessC.FLAGS2_* constants.
      Since:
      8.00.000.006
      See Also:
  • Constructor Details

    • UserName

      public UserName()
      Default constructor.
    • UserName

      public UserName(int id, String name, int type)
      Constructor with initial values.
      Parameters:
      id - User ID.
      name - User name.
      type - User type (group or user).
      See Also:
    • UserName

      public UserName(int id, String name, String guid, int type)
      Constructor with initial values.
      Parameters:
      id - User ID.
      name - User name.
      guid - User GUID.
      type - User type (group or user).
      See Also:
    • UserName

      public UserName(UserInfo ui)
      Constructor with initialisation from a user information object.
      Parameters:
      ui - Uer information object
  • Method Details

    • getId

      public int getId()
    • setId

      public void setId(int id)
    • getName

      public String getName()
    • setName

      public void setName(String name)
    • getGuid

      public String getGuid()
    • setGuid

      public void setGuid(String guid)
    • getType

      public int getType()
    • setType

      public void setType(int type)
    • getFlags

      public int getFlags()
    • setFlags

      public void setFlags(int flags)
    • getFlags2

      public int getFlags2()
    • setFlags2

      public void setFlags2(int flags2)
    • toString

      public String toString()
      Overrides:
      toString in class Object