public class TdbDatabaseList extends TdbControlObjectList
| Constructor and Description |
|---|
TdbDatabaseList(TdbSession session)
Request a list of all databases to which the calling process has at least
read access.
|
TdbDatabaseList(TdbSession session,
java.lang.String name)
Request a control object for a single, specific database, thesauri
or cluster to which the calling process has at least read access.
|
TdbDatabaseList(TdbSession session,
java.lang.String name,
boolean noBaf)
Request a control object for a single, specific database, thesauri
or cluster to which the calling process has at least read access.
|
TdbDatabaseList(TdbSession session,
TdbExtendedDatabaseType type)
Request a list of all databases of the stated type to which the calling process
has at least read access.
|
TdbDatabaseList(TdbSession session,
TdbExtendedDatabaseType type,
boolean noBaf)
Deprecated.
Migrate to constructor TdbDatabaseList(TdbSession, TdbExtendedDatabaseType, TdbDatabaseListType)
|
TdbDatabaseList(TdbSession session,
TdbExtendedDatabaseType dbType,
TdbDatabaseListType listType)
Request a list of all databases of the stated type to which the calling process
has at least read access.
|
contains, contains, get, refresh, transformadd, add, addAll, addAll, clear, contains, containsAll, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, retainAll, set, size, subList, toArray, toArraycodeList, getLastCode, getLastMessage, hasMessages, messageList, resetMessagescancel, getSession, isCancelable, setCancelablepublic TdbDatabaseList(TdbSession session) throws TdbException
session - Bounding sessionTdbExceptionpublic TdbDatabaseList(TdbSession session, TdbExtendedDatabaseType type) throws TdbException
session - Bounding sessiontype - Database typeTdbException@Deprecated public TdbDatabaseList(TdbSession session, TdbExtendedDatabaseType type, boolean noBaf) throws TdbException
Setting the 'noBaf' parameter to true will result in the list being produced somewhat faster. However, information that is solely stored in the BAF file will not be returned. This includes the record count, which instead will be reported as the last total number of indexed records (any unindexed records will not be reported). Neither will the time for the last database update be reported.
Note that the 'noBaf' parameter requires TRIPsystem 7.0.1 or later, and that databases must be reindexed with in order for the count of indexed records to be reported.
session - Bounding sessiontype - Database typenoBaf - Pass true to retrieve the list without accessing the BAF file of each databaseTdbExceptionTdbDatabaseList.TdbDatabaseList(TdbSession, TdbExtendedDatabaseType, TdbDatabaseListType)public TdbDatabaseList(TdbSession session, TdbExtendedDatabaseType dbType, TdbDatabaseListType listType) throws TdbException
Use the 'listType' parameter to indicate the kind of database list to request. To fetch the list with record counts but avoid using the BAF file, set it to 'DatabaseListNoBaf'. This includes the record count, which instead will be reported as the last total number of indexed records (any unindexed records will not be reported). To fetch the list without record counts (and gain a significant performance boost), set this parameter to DatabaseListNoCounts. Unless this parameter is set to Default, the last database update will not be reported.
session - Bounding sessiondbType - Database type to listlistType - The kind of database list to request (influences how and if record count and last update timestamps will be included)TdbExceptionpublic TdbDatabaseList(TdbSession session, java.lang.String name) throws TdbException
Setting the 'noBaf' parameter to true will result in the information being returned somewhat faster. However, information that is solely stored in the BAF file will not be returned. This includes the record count, which instead will be reported as the last total number of indexed records (any unindexed records will not be reported). Neither will the time for the last database update be reported.
Note that the 'noBaf' parameter requires TRIPsystem 7.0.1 or later, and that databases must be reindexed with in order for the count of indexed records to be reported.
session - Bounding sessionname - Database nameTdbExceptionpublic TdbDatabaseList(TdbSession session, java.lang.String name, boolean noBaf) throws TdbException
session - Bounding sessionname - Database namenoBaf - Pass true to retrieve the list without accessing the BAF file of each databaseTdbException