Package com.illumon.iris.db.util
Class NotebookConstants
java.lang.Object
com.illumon.iris.db.util.NotebookConstants
Constant values for retrieving notebook data from the DbInternal.WorkspaceData table. The constants are shared
between Enterprise and DnD, but the implementations diverge.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
The column name for the Data.static final String
The column name for the DataType.static final String
The column name for the unique identifier.static final String
The column name containing the last modified timestamp.static final String
The name of the data item.static final String
The owner of the data item.static final String
The status of the data item, we only care about those that areSTATUS_ACTIVE
.static final String
The node in the JSON that contains our actual data.static final String
The data type of files (the actual notebooks).static final String
The data type of folders (leading up to the actual notebooks).static final String
The string constant indicating a notebook or folder exists (vs.static final String
The namespace of the workspace data table.static final String
The name of the workspace data table. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
WORKSPACE_DATA_NAMESPACE
The namespace of the workspace data table.- See Also:
-
WORKSPACE_DATA_TABLE
The name of the workspace data table.- See Also:
-
COLUMN_ID
The column name for the unique identifier.- See Also:
-
COLUMN_LAST_MODIFIED
The column name containing the last modified timestamp.- See Also:
-
COLUMN_DATA_TYPE
The column name for the DataType.- See Also:
-
DATA_TYPE_FILE
The data type of files (the actual notebooks).- See Also:
-
DATA_TYPE_FOLDER
The data type of folders (leading up to the actual notebooks).- See Also:
-
COLUMN_NAME
The name of the data item.- See Also:
-
COLUMN_OWNER
The owner of the data item.- See Also:
-
COLUMN_STATUS
The status of the data item, we only care about those that areSTATUS_ACTIVE
.- See Also:
-
STATUS_ACTIVE
The string constant indicating a notebook or folder exists (vs. has been deleted).- See Also:
-
COLUMN_DATA
The column name for the Data.- See Also:
-
DATA_CONTENT_NODE
The node in the JSON that contains our actual data.- See Also:
-
-
Constructor Details
-
NotebookConstants
public NotebookConstants()
-