Class SBLStore.Entry

java.lang.Object
org.bzdev.ejws.SBLStore.Entry
Enclosing class:
SBLStore

public static class SBLStore.Entry extends Object
Data stored for a user.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    The password or SBL data
    boolean
    True if the entry is for an active user; false otherwise
    boolean
    the password mode (true for passwords; false for SBL data)
  • Method Summary

    Modifier and Type
    Method
    Description
    Get a user's data stored in this object
    boolean
    Determine if the data field contains a password or SBL data.
    boolean
    Determine if a user is active.
    boolean
    Determine if a user is pending.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • pwmode

      public boolean pwmode
      the password mode (true for passwords; false for SBL data)
    • data

      public String data
      The password or SBL data
    • isActive

      public boolean isActive
      True if the entry is for an active user; false otherwise
  • Method Details

    • getPWMode

      public boolean getPWMode()
      Determine if the data field contains a password or SBL data.
      Returns:
      true for a password; false for SBL data
    • getData

      public String getData()
      Get a user's data stored in this object
      Returns:
      either a password or String-encoded SBL data.
    • isActive

      public boolean isActive()
      Determine if a user is active.
      Returns:
      true if the user is active; false otherise
    • isPending

      public boolean isPending()
      Determine if a user is pending.
      Returns:
      true if the user is pending; false otherise