Class TdbDatabaseList
- All Implemented Interfaces:
com.tietoenator.trip.jxp.internal.utils.DOMSink,Iterable<TdbControlObject>,Collection<TdbControlObject>,List<TdbControlObject>,SequencedCollection<TdbControlObject>
-
Constructor Summary
ConstructorsConstructorDescriptionTdbDatabaseList(TdbSession session) Request a list of all databases 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.TdbDatabaseList(TdbSession session, 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, 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. -
Method Summary
Methods inherited from class com.tietoenator.trip.jxp.control.TdbControlObjectList
contains, contains, get, refresh, transformMethods inherited from class com.tietoenator.trip.jxp.TdbMessageProvidingList
add, add, addAll, addAll, clear, contains, containsAll, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, retainAll, set, size, subList, toArray, toArrayMethods inherited from class com.tietoenator.trip.jxp.TdbMessageProvider
codeList, getLastCode, getLastMessage, hasMessages, messageList, resetMessagesMethods inherited from class com.tietoenator.trip.jxp.session.TdbSessionObject
cancel, getSession, isCancelable, setCancelableMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArrayMethods inherited from interface java.util.List
addFirst, addLast, equals, getFirst, getLast, hashCode, removeFirst, removeLast, replaceAll, reversed, sort, spliterator
-
Constructor Details
-
TdbDatabaseList
Request a list of all databases to which the calling process has at least read access.- Parameters:
session- Bounding session- Throws:
TdbException
-
TdbDatabaseList
Request a list of all databases of the stated type to which the calling process has at least read access.- Parameters:
session- Bounding sessiontype- Database type- Throws:
TdbException
-
TdbDatabaseList
@Deprecated public TdbDatabaseList(TdbSession session, TdbExtendedDatabaseType type, boolean noBaf) throws TdbException Deprecated.Migrate to constructor TdbDatabaseList(TdbSession, TdbExtendedDatabaseType, TdbDatabaseListType)Request a list of all databases of the stated type to which the calling process has at least read access.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.
- Parameters:
session- Bounding sessiontype- Database typenoBaf- Pass true to retrieve the list without accessing the BAF file of each database- Throws:
TdbException- See Also:
-
TdbDatabaseList
public TdbDatabaseList(TdbSession session, TdbExtendedDatabaseType dbType, TdbDatabaseListType listType) throws TdbException Request a list of all databases of the stated type to which the calling process has at least read access.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.
- Parameters:
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)- Throws:
TdbException
-
TdbDatabaseList
Request a control object for a single, specific database, thesauri or cluster to which the calling process has at least read access.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.
- Parameters:
session- Bounding sessionname- Database name- Throws:
TdbException
-
TdbDatabaseList
Request a control object for a single, specific database, thesauri or cluster to which the calling process has at least read access.- Parameters:
session- Bounding sessionname- Database namenoBaf- Pass true to retrieve the list without accessing the BAF file of each database- Throws:
TdbException
-