com.ibm.pim.interfaces.managers
Interface LookupTableManager

All Superinterfaces:
Manager

public interface LookupTableManager
extends Manager

Read-only interface for the Manager of LookupTable objects


Field Summary
static java.lang.String copyright
           
 
Method Summary
 LookupTable getLookupTableByName(java.lang.String lookupTableName)
          Retrieves a specific LookupTable by name
 PIMCollection getLookupTables()
          Retrieves all LookupTables available in the current context
 
Methods inherited from interface com.ibm.pim.interfaces.managers.Manager
getManagerName
 

Field Detail

copyright

public static final java.lang.String copyright
See Also:
Constant Field Values
Method Detail

getLookupTables

public PIMCollection getLookupTables()
                              throws PIMInternalException,
                                     PIMAuthorizationException
Retrieves all LookupTables available in the current context

Returns:
A PIMCollection of LookupTables. Please note this is a lazily instantiated collection
Throws:
PIMInternalException - If an internal error occurs
PIMAuthorizationException - If the user is not allowed to perform this operation
See Also:
for more info, LookupTable

getLookupTableByName

public LookupTable getLookupTableByName(java.lang.String lookupTableName)
                                 throws PIMInternalException,
                                        PIMAuthorizationException
Retrieves a specific LookupTable by name

Parameters:
lookupTableName - The name of the LookupTable to be retrieved
Returns:
The LookupTable matching that name, or null if no matches found.
Throws:
PIMInternalException - If an internal error occurs
PIMAuthorizationException - If the user is not allowed to perform this operation
See Also:
LookupTable