Package com.redwood.scheduler.api.model
Interface Table
-
- All Superinterfaces:
ApplicationObject
,BusinessKeyObject
,NamedRootObject
,NamedRootObjectComp
,PartitionableObject
,PartitionableObjectComp
,Readable
,Root
,SchedulerEntity
,SchedulerEntityComp
,TableComp
,UniqueNamedApplicationObject
public interface Table extends TableComp, UniqueNamedApplicationObject, Readable
A user defined table.
-
-
Field Summary
Fields Modifier and Type Field Description static String
OBJECT_TYPE
String that will be returned fromSchedulerEntity.getObjectType()
for "Table" objects.static String
SEC_PRIV_CREATE
This privilege can be granted at a group level.static String
SEC_PRIV_DELETE
This privilege can be granted at a group level.static String
SEC_PRIV_EDIT
This privilege can be granted at a group level.static String
SEC_PRIV_VIEW
This privilege can be granted at a group level.static String
SEC_RANK_ALL
This rank is made of the following privileges: create , view , edit , deletestatic String
SEC_RANK_CREATE
This rank is made of the following privileges: createstatic String
SEC_RANK_DELETE
This rank is made of the following privileges: create , view , deletestatic String
SEC_RANK_EDIT
This rank is made of the following privileges: create , view , editstatic String
SEC_RANK_NONE
This rank has no privileges assigned to it.static String
SEC_RANK_VIEW
This rank is made of the following privileges: viewstatic QueryObjectType<Table>
TYPE
Type that can be used inSchedulerSession.executeObjectQuery(QueryObjectType, String, Object...)
.static String
VARIABLES
The name of the standard variables table-
Fields inherited from interface com.redwood.scheduler.api.model.BusinessKeyObject
COPYRIGHT_MESSAGE_BKO, ID_BKO
-
Fields inherited from interface com.redwood.scheduler.api.model.Readable
COPYRIGHT_MESSAGE_E, ID_E
-
Fields inherited from interface com.redwood.scheduler.api.model.SchedulerEntity
ACTION_AUDIT, ACTION_EXPORT, ACTION_READ, BEHAVIOR_DEPRECATED, BEHAVIOR_NONE, BEHAVIOR_SYSTEM
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RequiredPermission
checkCreatePrivilege()
Check whether or not the create action can be performed on this object.RequiredPermission
checkDeletePrivilege()
Check whether or not the delete action can be performed on this object.RequiredPermission
checkEditPrivilege()
Check whether or not the edit action can be performed on this object.RequiredPermission
checkViewPrivilege()
Check whether or not the view action can be performed on this object.TableValue
createTableValue()
Create a newTableValue
linked to this object.TableValue
createTableValue(String key, TableDefinitionColumn tableDefinitionColumn)
Creates a TableValue for the given key and TableDefinitionColumn.TableImportMode
getImportMode()
Get the value for ImportMode.Long
getNumTableValues()
Get the value for NumTableValues.RTXReader
getRTXReader()
Export this table as an RTXReader.RTXReader
getRTXReader(String[] cols)
Export this table as an RTXReader filtered by columns.TableDefinition
getTableDefinition()
Get the TableDefinition.RWIterable<TableValue>
getTableRowByKey(String key)
Return an iterator with all the values in the row.TableValue
getTableValueBySearchKeySearchColumnName(String searchKey, String searchColumnName)
Get the TableValue by SearchKeyColumn.RWIterable<TableValue>
getTableValues()
Get anRWIterable
over a collection ofTableValues
, the collection will be ordered by Key DisplayOrder.boolean
isInMemory()
Get the value for InMemory.void
setImportMode(TableImportMode newImportMode)
Set the value for ImportMode.void
setInMemory(boolean newInMemory)
Set the value for InMemory.void
setTableDefinition(TableDefinition newTableDefinition)
Set the value for TableDefinition.-
Methods inherited from interface com.redwood.scheduler.api.model.ApplicationObject
getParentApplication, setParentApplication
-
Methods inherited from interface com.redwood.scheduler.api.model.BusinessKeyObject
getBusinessKey
-
Methods inherited from interface com.redwood.scheduler.api.model.NamedRootObject
createObjectReference, getComment, getDescription, getLinkedObjectReferenceByLinkedObject, getLinkedObjectReferenceByName, getLinkedObjectReferences, getName, getSearchName, getSourceObjectReferences, isHidden, setComment, setDescription, setName
-
Methods inherited from interface com.redwood.scheduler.api.model.PartitionableObject
createObjectTag, getEditablePartitions, getObjectTagByObjectTagDefinition, getObjectTags, getPartition, setPartition
-
Methods inherited from interface com.redwood.scheduler.api.model.Root
getCreationTime, getLastModificationTime, getLastModifierSubject
-
Methods inherited from interface com.redwood.scheduler.api.model.SchedulerEntity
canPerform, createSubjectObjectPrivilegeGrant, deleteObject, getAuditTrail, getAuditTrailSize, getBehavior, getEffectiveBehavior, getErrorNameEN, getErrorNameKey, getLLPVersion, getLOV, getLOVSupport, getObjectType, getParentSchedulerEntities, getRuntime, getSubjectObjectPrivilegeGrantBySubject, getSubjectObjectPrivilegeGrants, getUniqueId, getUrl, getUrl, isCreated, isDeletable, isDeleted, isModifiable, isModified, isSelectVersioned, processRelatedObjects, processRelatedObjects, processRelatedObjects, refreshObject, resetObject, resetObject, resetValuesToDefault, selectForRead
-
-
-
-
Field Detail
-
OBJECT_TYPE
static final String OBJECT_TYPE
String that will be returned fromSchedulerEntity.getObjectType()
for "Table" objects.- See Also:
- Constant Field Values
-
TYPE
static final QueryObjectType<Table> TYPE
Type that can be used inSchedulerSession.executeObjectQuery(QueryObjectType, String, Object...)
.
-
VARIABLES
static final String VARIABLES
The name of the standard variables table- See Also:
- Constant Field Values
-
SEC_PRIV_CREATE
static final String SEC_PRIV_CREATE
This privilege can be granted at a group level.- See Also:
- Constant Field Values
-
SEC_PRIV_VIEW
static final String SEC_PRIV_VIEW
This privilege can be granted at a group level. This privilege can be granted at an instance level.- See Also:
- Constant Field Values
-
SEC_PRIV_EDIT
static final String SEC_PRIV_EDIT
This privilege can be granted at a group level. This privilege can be granted at an instance level.- See Also:
- Constant Field Values
-
SEC_PRIV_DELETE
static final String SEC_PRIV_DELETE
This privilege can be granted at a group level. This privilege can be granted at an instance level.- See Also:
- Constant Field Values
-
SEC_RANK_NONE
static final String SEC_RANK_NONE
This rank has no privileges assigned to it.- See Also:
- Constant Field Values
-
SEC_RANK_CREATE
static final String SEC_RANK_CREATE
This rank is made of the following privileges: create- See Also:
- Constant Field Values
-
SEC_RANK_VIEW
static final String SEC_RANK_VIEW
This rank is made of the following privileges: view- See Also:
- Constant Field Values
-
SEC_RANK_EDIT
static final String SEC_RANK_EDIT
This rank is made of the following privileges: create , view , edit- See Also:
- Constant Field Values
-
SEC_RANK_DELETE
static final String SEC_RANK_DELETE
This rank is made of the following privileges: create , view , delete- See Also:
- Constant Field Values
-
SEC_RANK_ALL
static final String SEC_RANK_ALL
This rank is made of the following privileges: create , view , edit , delete- See Also:
- Constant Field Values
-
-
Method Detail
-
getImportMode
TableImportMode getImportMode()
Get the value for ImportMode. (What is the import mode for this table?) This value is mandatory, and therefore will not benull
if this object has been retrieved from the database.- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
isInMemory
boolean isInMemory()
Get the value for InMemory. (Memory tables are loaded into memory on startup of the scheduler, or as soon as this flag is set to true.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getNumTableValues
Long getNumTableValues()
Get the value for NumTableValues. (The number of TableValues this table has. This is a performance optimization field.) This value is mandatory, and therefore will not benull
if this object has been retrieved from the database.- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
setImportMode
void setImportMode(TableImportMode newImportMode)
Set the value for ImportMode. (What is the import mode for this table?) This value is mandatory.- Parameters:
newImportMode
- the new value for ImportMode. If this isnull
, then the object cannot be persisted.- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
setInMemory
void setInMemory(boolean newInMemory)
Set the value for InMemory. (Memory tables are loaded into memory on startup of the scheduler, or as soon as this flag is set to true.)- Parameters:
newInMemory
- the new value for InMemory.- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
createTableValue
TableValue createTableValue(String key, TableDefinitionColumn tableDefinitionColumn)
Creates a TableValue for the given key and TableDefinitionColumn. It uses the TableDefinitionColumn to set the columnName in the new TableValue and to initialize columnValue if the column specifies a default value.NOTE: This method is a convenience method, and should be used instead of
createTableValue()
, as this also sets the default value correctly, as well as pre-populating the name.- Parameters:
key
- Key of the value that should be created.tableDefinitionColumn
- TableDefinitionColumn for which a TableValue should be created.- Returns:
- The new TableValue
-
getTableRowByKey
RWIterable<TableValue> getTableRowByKey(String key)
Return an iterator with all the values in the row.- Specified by:
getTableRowByKey
in interfaceTableComp
- Parameters:
key
- The key (case insensitive).- Returns:
- The values in the row.
-
getRTXReader
RTXReader getRTXReader()
Export this table as an RTXReader.- Returns:
- The RTXReader representing this Table.
-
getRTXReader
RTXReader getRTXReader(String[] cols)
Export this table as an RTXReader filtered by columns.- Parameters:
cols
- Column names as a list- Returns:
- Filtered by columns RTXReader representing this Table.
-
getTableDefinition
TableDefinition getTableDefinition()
Get the TableDefinition.- Returns:
- TableDefinition
- Throws:
ObjectDeletedException
- If this method is called when the object has been marked for deletion.ObjectNotAttachedToSessionException
- If this method is called when the object has been removed from it's session.
-
setTableDefinition
void setTableDefinition(TableDefinition newTableDefinition)
Set the value for TableDefinition. This value is mandatory.- Parameters:
newTableDefinition
- is the object to set TableDefinition to. What type of object raised this alert? If this isnull
, then the object cannot be persisted.
-
getTableValues
RWIterable<TableValue> getTableValues()
Get anRWIterable
over a collection ofTableValues
, the collection will be ordered by Key DisplayOrder. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Table values.- Specified by:
getTableValues
in interfaceTableComp
- Returns:
- An
RWIterable
over a collection ofTableValue
objects , the collection will be ordered by Key DisplayOrder.
-
createTableValue
TableValue createTableValue()
Create a newTableValue
linked to this object.- Returns:
- a new
TableValue
.
-
getTableValueBySearchKeySearchColumnName
TableValue getTableValueBySearchKeySearchColumnName(String searchKey, String searchColumnName)
Get the TableValue by SearchKeyColumn.- Parameters:
searchKey
-searchColumnName
-- Returns:
- the TableValue, or
null
if it could not be found
-
checkCreatePrivilege
RequiredPermission checkCreatePrivilege()
Check whether or not the create action can be performed on this object.- Returns:
- a
RequiredPermission
instance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
-
checkViewPrivilege
RequiredPermission checkViewPrivilege()
Check whether or not the view action can be performed on this object.- Returns:
- a
RequiredPermission
instance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
-
checkEditPrivilege
RequiredPermission checkEditPrivilege()
Check whether or not the edit action can be performed on this object.- Returns:
- a
RequiredPermission
instance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
-
checkDeletePrivilege
RequiredPermission checkDeletePrivilege()
Check whether or not the delete action can be performed on this object.- Returns:
- a
RequiredPermission
instance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
-
-