com.ibm.pim.interfaces.context
Interface Context


Deprecated.

public interface Context

Interface providing methods for Context


Field Summary
static java.lang.String copyright
          Deprecated.  
 
Method Summary
 void commit()
          Deprecated. Commit transaction.
 CatalogManager getCatalogManager()
          Deprecated. Gets the CatalogManager for this context
 ContextAttributes getContextAttributes()
          Deprecated. Gets the context attributes for this context
 HierarchyManager getHierarchyManager()
          Deprecated. Gets the HierarchyManager for this context
 LookupTableManager getLookupTableManager()
          Deprecated. Gets the LookupTableManager for this context
 SearchManager getSearchManager()
          Deprecated. Gets the SearchManager for this context
 SpecManager getSpecManager()
          Deprecated. Gets the SpecManager for this context
 TimezoneResolver getTimezoneResolver()
          Deprecated. Gets a utility for processing timezone related information.
 UserDefinedLogManager getUserDefinedLogManager()
          Deprecated. Gets the UserDefinedLogManager for this context
 boolean inTransaction()
          Deprecated. Return true if in a transaction, or false otherwise
 void rollback()
          Deprecated. Rollback transaction.
 void startTransaction()
          Deprecated. Start a transaction.
 

Field Detail

copyright

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

getCatalogManager

CatalogManager getCatalogManager()
                                 throws PIMInternalException,
                                        PIMAuthorizationException
Deprecated. 
Gets the CatalogManager for this context

Returns:
the Manager for Catalog objects
Throws:
PIMInternalException - if an internal error occurs
PIMAuthorizationException - if the user is not authorized to perform this operation
See Also:
CatalogManager

getHierarchyManager

HierarchyManager getHierarchyManager()
                                     throws PIMInternalException,
                                            PIMAuthorizationException
Deprecated. 
Gets the HierarchyManager for this context

Returns:
the Manager for Hierarchy objects
Throws:
PIMInternalException - if an internal error occurs
PIMAuthorizationException - if the user is not authorized to perform this operation
See Also:
HierarchyManager

getLookupTableManager

LookupTableManager getLookupTableManager()
                                         throws PIMInternalException,
                                                PIMAuthorizationException
Deprecated. 
Gets the LookupTableManager for this context

Returns:
the Manager for LookupTable objects
Throws:
PIMInternalException - if an internal error occurs
PIMAuthorizationException - if the user is not authorized to perform this operation
See Also:
LookupTableManager

getSearchManager

SearchManager getSearchManager()
                               throws PIMInternalException,
                                      PIMAuthorizationException
Deprecated. 
Gets the SearchManager for this context

Returns:
the Manager for Search objects
Throws:
PIMInternalException - if an internal error occurs
PIMAuthorizationException - if the user is not authorized to perform this operation
See Also:
SearchManager

getSpecManager

SpecManager getSpecManager()
                           throws PIMInternalException,
                                  PIMAuthorizationException
Deprecated. 
Gets the SpecManager for this context

Returns:
the Manager for Spec objects
Throws:
PIMInternalException - if an internal error occurs
PIMAuthorizationException - if the user is not authorized to perform this operation
See Also:
SpecManager

getUserDefinedLogManager

UserDefinedLogManager getUserDefinedLogManager()
                                               throws PIMInternalException,
                                                      PIMAuthorizationException
Deprecated. 
Gets the UserDefinedLogManager for this context

Returns:
the Manager for UserDefinedLog objects
Throws:
PIMInternalException - if an internal error occurs
PIMAuthorizationException - if the user is not authorized to perform this operation
See Also:
UserDefinedLogManager

getContextAttributes

ContextAttributes getContextAttributes()
                                       throws PIMInternalException,
                                              PIMAuthorizationException
Deprecated. 
Gets the context attributes for this context

Returns:
A ContextAttributes object containing attributes for this context
Throws:
PIMInternalException - if an internal error occurs
PIMAuthorizationException - if the user is not authorized to perform this operation
See Also:
ContextAttributes

startTransaction

void startTransaction()
                      throws PIMInternalException,
                             PIMAuthorizationException,
                             PIMAlreadyInTransactionException
Deprecated. 
Start a transaction. No effect if already in a transaction.

Throws:
PIMInternalException - if an internal error occurs
PIMAuthorizationException - if the user is not authorized to perform this operation
PIMAlreadyInTransactionException - if a transaction is already started. This situation must be handled; the user can commit, rollback or cancel their operation but should not continue normal processing if this is thrown, as subsequent code will think it is in a new transaction.

commit

void commit()
            throws PIMInternalException,
                   PIMAuthorizationException
Deprecated. 
Commit transaction. No effect if not in a transaction.

Throws:
PIMInternalException - if an internal error occurs
PIMAuthorizationException - if the user is not authorized to perform this operation

rollback

void rollback()
              throws PIMInternalException,
                     PIMAuthorizationException
Deprecated. 
Rollback transaction. No effect if not in a transaction.

Throws:
PIMInternalException - if an internal error occurs
PIMAuthorizationException - if the user is not authorized to perform this operation

inTransaction

boolean inTransaction()
                      throws PIMInternalException,
                             PIMAuthorizationException
Deprecated. 
Return true if in a transaction, or false otherwise

Throws:
PIMInternalException - if an internal error occurs
PIMAuthorizationException - if the user is not authorized to perform this operation

getTimezoneResolver

TimezoneResolver getTimezoneResolver()
                                     throws PIMInternalException
Deprecated. 
Gets a utility for processing timezone related information.

Returns:
a TimezoneResolver
Throws:
PIMInternalException - if an internal error occurs