com.filenet.api.admin
Interface TableDefinition
-
- All Superinterfaces:
- EngineObject, IndependentlyPersistableObject, IndependentObject, RepositoryObject, java.io.Serializable
public interface TableDefinition extends RepositoryObject, IndependentlyPersistableObject
Represents the description of a Content Engine database table. All the tables used by the Content Engine database have correspondingTableDefinitionobjects that are accessible using theTableDefinitionsproperty of anObjectStoreobject.You can also access a
TableDefinitionobject as follows:- Through the
TableDefinitionproperty of aClassDefinition,DocumentClassDefinition,SubscribableClassDefinition, orVersionableClassDefinitionobject. This type ofTableDefinitionobject maps to a Content Engine database table that contains information about a specific class. - Through the
TableDefinitionproperty of a property definition object (PropertyDefinitionBinary,PropertyDefinitionBoolean, and so on). This type ofTableDefinitionobject maps to a Content Engine database table that contains information about a specific queryable property.
Metadata
-
-
Method Summary
Methods Modifier and Type Method and Description ColumnDefinitionListget_ColumnDefinitions()Returns the value of the ColumnDefinitions property.java.lang.Stringget_Creator()Returns the value of the Creator property.java.util.Dateget_DateCreated()Returns the value of the DateCreated property.java.util.Dateget_DateLastModified()Returns the value of the DateLastModified property.Idget_Id()Returns the value of the Id property.CmIndexDefinitionListget_IndexDefinitions()Returns the value of the IndexDefinitions property.java.lang.Stringget_LastModifier()Returns the value of the LastModifier property.java.lang.Stringget_Name()Returns the value of the Name property.TableDefinitionget_NextOverflowTableDefinition()Returns the value of the NextOverflowTableDefinition property.java.lang.Stringget_Owner()Returns the value of the Owner property.AccessPermissionListget_Permissions()Returns the value of the Permissions property.java.lang.Stringget_TableName()Returns the value of the TableName property.ClassDefinitionSetget_UsedInClasses()Returns the value of the UsedInClasses property.voidset_ColumnDefinitions(ColumnDefinitionList value)Sets the value of the ColumnDefinitions property.voidset_Creator(java.lang.String value)Sets the value of the Creator property.voidset_DateCreated(java.util.Date value)Sets the value of the DateCreated property.voidset_DateLastModified(java.util.Date value)Sets the value of the DateLastModified property.voidset_IndexDefinitions(CmIndexDefinitionList value)Sets the value of the IndexDefinitions property.voidset_LastModifier(java.lang.String value)Sets the value of the LastModifier property.voidset_Owner(java.lang.String value)Sets the value of the Owner property.voidset_Permissions(AccessPermissionList value)Sets the value of the Permissions property.-
Methods inherited from interface com.filenet.api.core.RepositoryObject
getObjectStore
-
Methods inherited from interface com.filenet.api.core.IndependentlyPersistableObject
addPendingAction, clearPendingActions, delete, getAccessAllowed, getPendingActions, getUpdateSequenceNumber, isCurrent, save, save, setUpdateSequenceNumber
-
Methods inherited from interface com.filenet.api.core.IndependentObject
fetchProperties, fetchProperties, fetchProperty, fetchProperty, getObjectReference, refresh, refresh, refresh
-
Methods inherited from interface com.filenet.api.core.EngineObject
get_ClassDescription, getClassName, getConnection, getProperties, getSuperClasses
-
-
-
-
Method Detail
-
get_Creator
java.lang.String get_Creator()
Returns the value of the Creator property. For more information, see Creator Property.
-
set_Creator
void set_Creator(java.lang.String value)
Sets the value of the Creator property. For more information, see Creator Property.
-
get_DateCreated
java.util.Date get_DateCreated()
Returns the value of the DateCreated property. For more information, see DateCreated Property.
-
set_DateCreated
void set_DateCreated(java.util.Date value)
Sets the value of the DateCreated property. For more information, see DateCreated Property.
-
get_LastModifier
java.lang.String get_LastModifier()
Returns the value of the LastModifier property. For more information, see LastModifier Property.
-
set_LastModifier
void set_LastModifier(java.lang.String value)
Sets the value of the LastModifier property. For more information, see LastModifier Property.
-
get_DateLastModified
java.util.Date get_DateLastModified()
Returns the value of the DateLastModified property. For more information, see DateLastModified Property.
-
set_DateLastModified
void set_DateLastModified(java.util.Date value)
Sets the value of the DateLastModified property. For more information, see DateLastModified Property.
-
get_Id
Id get_Id()
Returns the value of the Id property. For more information, see Id Property.
-
get_Name
java.lang.String get_Name()
Returns the value of the Name property. For more information, see Name Property.
-
get_Owner
java.lang.String get_Owner()
Returns the value of the Owner property. For more information, see Owner Property.
-
set_Owner
void set_Owner(java.lang.String value)
Sets the value of the Owner property. For more information, see Owner Property.
-
get_Permissions
AccessPermissionList get_Permissions()
Returns the value of the Permissions property. For more information, see Permissions Property.
-
set_Permissions
void set_Permissions(AccessPermissionList value)
Sets the value of the Permissions property. For more information, see Permissions Property.
-
get_TableName
java.lang.String get_TableName()
Returns the value of the TableName property. For more information, see TableName Property.
-
get_ColumnDefinitions
ColumnDefinitionList get_ColumnDefinitions()
Returns the value of the ColumnDefinitions property. For more information, see ColumnDefinitions Property.
-
set_ColumnDefinitions
void set_ColumnDefinitions(ColumnDefinitionList value)
Sets the value of the ColumnDefinitions property. For more information, see ColumnDefinitions Property.
-
get_UsedInClasses
ClassDefinitionSet get_UsedInClasses()
Returns the value of the UsedInClasses property. For more information, see UsedInClasses Property.
-
get_NextOverflowTableDefinition
TableDefinition get_NextOverflowTableDefinition()
Returns the value of the NextOverflowTableDefinition property. For more information, see NextOverflowTableDefinition Property.
-
get_IndexDefinitions
CmIndexDefinitionList get_IndexDefinitions()
Returns the value of the IndexDefinitions property. For more information, see IndexDefinitions Property.
-
set_IndexDefinitions
void set_IndexDefinitions(CmIndexDefinitionList value)
Sets the value of the IndexDefinitions property. For more information, see IndexDefinitions Property.
-
-