Class NotebookConstants

java.lang.Object
com.illumon.iris.db.util.NotebookConstants

public class NotebookConstants extends Object
Constant values for retrieving notebook data from the DbInternal.WorkspaceData table. The constants are shared between Enterprise and DnD, but the implementations diverge.
  • Field Details

    • WORKSPACE_DATA_NAMESPACE

      public static final String WORKSPACE_DATA_NAMESPACE
      The namespace of the workspace data table.
      See Also:
    • WORKSPACE_DATA_TABLE

      public static final String WORKSPACE_DATA_TABLE
      The name of the workspace data table.
      See Also:
    • COLUMN_ID

      public static final String COLUMN_ID
      The column name for the unique identifier.
      See Also:
    • COLUMN_LAST_MODIFIED

      public static final String COLUMN_LAST_MODIFIED
      The column name containing the last modified timestamp.
      See Also:
    • COLUMN_DATA_TYPE

      public static final String COLUMN_DATA_TYPE
      The column name for the DataType.
      See Also:
    • DATA_TYPE_FILE

      public static final String DATA_TYPE_FILE
      The data type of files (the actual notebooks).
      See Also:
    • DATA_TYPE_FOLDER

      public static final String DATA_TYPE_FOLDER
      The data type of folders (leading up to the actual notebooks).
      See Also:
    • COLUMN_NAME

      public static final String COLUMN_NAME
      The name of the data item.
      See Also:
    • COLUMN_OWNER

      public static final String COLUMN_OWNER
      The owner of the data item.
      See Also:
    • COLUMN_STATUS

      public static final String COLUMN_STATUS
      The status of the data item, we only care about those that are STATUS_ACTIVE.
      See Also:
    • STATUS_ACTIVE

      public static final String STATUS_ACTIVE
      The string constant indicating a notebook or folder exists (vs. has been deleted).
      See Also:
    • COLUMN_DATA

      public static final String COLUMN_DATA
      The column name for the Data.
      See Also:
    • DATA_CONTENT_NODE

      public static final String DATA_CONTENT_NODE
      The node in the JSON that contains our actual data.
      See Also:
  • Constructor Details

    • NotebookConstants

      public NotebookConstants()