Interface UserSubStates


public interface UserSubStates
This interface contains some commonly used sub states for platform users as a more specialized state information. Beside those predefined sub states, you can create your custom ones as you like, only the states are fixed by the platform, the sub states can be chosen freely.
Author:
Micha Kiener
  • Field Summary

    Fields 
    Modifier and Type Field Description
    static java.lang.String ACTIVE
    Use this one as the default in combination with the active state of a user.
    static java.lang.String DEACTIVATING
    You can use this sub state while the user is in deactivation process (e.g.
    static java.lang.String INACTIVE
    Use this one as the default in combination with the inactive state of a user.
    static java.lang.String INITIALIZING
    You can use this sub state while the user is initializing (e.g.
    static java.lang.String REACTIVATING
    You can use this sub state while the user is in reactivation process (e.g.
  • Field Details

    • ACTIVE

      static final java.lang.String ACTIVE
      Use this one as the default in combination with the active state of a user.
      See Also:
      Constant Field Values
    • INACTIVE

      static final java.lang.String INACTIVE
      Use this one as the default in combination with the inactive state of a user.
      See Also:
      Constant Field Values
    • INITIALIZING

      static final java.lang.String INITIALIZING
      You can use this sub state while the user is initializing (e.g. if it takes a long time when creating and initializing a user, most likely happening within several transactions and not just one). This might be the case if an initializing process is triggered upon creation of a user.
      See Also:
      Constant Field Values
    • DEACTIVATING

      static final java.lang.String DEACTIVATING
      You can use this sub state while the user is in deactivation process (e.g. if it takes a long time when deactivating a user, most likely happening within several transactions and not just one). This might be the case if a deactivation process is triggered upon deactivation of a user.
      See Also:
      Constant Field Values
    • REACTIVATING

      static final java.lang.String REACTIVATING
      You can use this sub state while the user is in reactivation process (e.g. if it takes a long time when reactivating a user, most likely happening within several transactions and not just one). This might be the case if a reactivation process is triggered upon reactivation of a user.
      See Also:
      Constant Field Values