Class UserOptions

java.lang.Object
org.kuali.rice.kew.useroptions.UserOptions
All Implemented Interfaces:
Comparable<UserOptions>

@Entity public class UserOptions extends Object implements Comparable<UserOptions>
An option defined for a user. These are used to store user Preferences.
Author:
Kuali Rice Team (rice.collab@kuali.org)
  • Constructor Details

    • UserOptions

      public UserOptions()
  • Method Details

    • getLockVerNbr

      public Integer getLockVerNbr()
    • getOptionId

      public String getOptionId()
    • getOptionVal

      public String getOptionVal()
    • getWorkflowId

      public String getWorkflowId()
    • setLockVerNbr

      public void setLockVerNbr(Integer integer)
    • setOptionId

      public void setOptionId(String string)
    • setOptionVal

      public void setOptionVal(String string)
    • setWorkflowId

      public void setWorkflowId(String string)
    • compareTo

      public int compareTo(UserOptions o)
      Compares the given object is an instance of this class, then determines comparison based on the option id.
      Specified by:
      compareTo in interface Comparable<UserOptions>
      Parameters:
      o - the object to compare with
      Returns:
      The value 0 if the option ID is equal; a value less than 0 if the Option ID is greater than this object's; and a value greater than 0 if the argument's Option ID less than this object's.