Package com.tietoenator.trip.jxp.control
Class TdbUserList
- java.lang.Object
-
- All Implemented Interfaces:
com.tietoenator.trip.jxp.internal.utils.DOMSink
,java.lang.Iterable<TdbControlObject>
,java.util.Collection<TdbControlObject>
,java.util.List<TdbControlObject>
- Direct Known Subclasses:
TdbFileManagerList
,TdbManagerList
,TdbUserManagerList
public class TdbUserList extends TdbControlObjectList
Retrieve a list of users and/or managers of a specific type
-
-
Constructor Summary
Constructors Constructor Description TdbUserList(TdbSession session)
Shortcut constructor, retrieves a simple list of usersTdbUserList(TdbSession session, boolean self, boolean all)
Constructor, retrieves a list of usersTdbUserList(TdbSession session, int filter, boolean self, boolean all)
Constructor, retrieve a list of users and/or managers of a specific type
-
Method Summary
-
Methods inherited from class com.tietoenator.trip.jxp.control.TdbControlObjectList
contains, contains, refresh, transform
-
Methods 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, toArray
-
Methods inherited from class com.tietoenator.trip.jxp.TdbMessageProvider
codeList, getLastCode, getLastMessage, hasMessages, messageList, resetMessages
-
Methods inherited from class com.tietoenator.trip.jxp.session.TdbSessionObject
cancel, getSession, isCancelable, setCancelable
-
-
-
-
Constructor Detail
-
TdbUserList
public TdbUserList(TdbSession session, int filter, boolean self, boolean all) throws TdbException
Constructor, retrieve a list of users and/or managers of a specific type- Parameters:
session
- Active sessionfilter
- Set this to UserManagers, FileManagers, AllManagers, or 0 for all usersself
- Set this true to include the current user in the listall
- Set this true to include users not owned by the calling process- Throws:
TdbException
-
TdbUserList
public TdbUserList(TdbSession session, boolean self, boolean all) throws TdbException
Constructor, retrieves a list of users- Parameters:
session
- Active sessionself
- Set true to include the current user in the listall
- Set true to include users not owned by the calling process- Throws:
TdbException
-
TdbUserList
public TdbUserList(TdbSession session) throws TdbException
Shortcut constructor, retrieves a simple list of users- Parameters:
session
- Active session- Throws:
TdbException
-
-