Skip navigation links

Oracle® OLAP Java API Reference
11g Release 1 (11.1)

B28128-01


oracle.olapi.transaction
Class WriteLockException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by oracle.olapi.OLAPIRuntimeException
                  extended by oracle.olapi.transaction.WriteLockException

All Implemented Interfaces:
java.io.Serializable, HasLocalizedMessage

public class WriteLockException
extends OLAPIRuntimeException

Indicates that the TransactionProvider cannot create a write Transaction at this time. This exception occurs, for example, in an application that has a Source produced by a Template. The Source is active in a parent Transaction and the application has begun two child Transaction objects. If the application changes the state of the Template in one child Transaction and then attempts to change the state of the Template in the other child without having first prepared and committed the first child Transaction into the parent Transaction, then the TransactionProvider produces this exception.

See Also:
Serialized Form

Constructor Summary
WriteLockException(MetadataState state, Transaction transaction, Transaction activeTransaction)
          Creates a WriteLockException.

 

Method Summary
 Transaction getActiveTransaction()
          Gets the Transaction in which the MetadataState is currently being changed.
 MetadataState getMetadataState()
          Gets the MetadataState that cannot change state in the Transaction returned by the getTransaction method because the MetadataState is active in the Transaction returned by the getActiveTransaction method.
 Transaction getTransaction()
          Gets the Transaction in which the attempt to change a MetadataState failed because the MetadataState is not active in the Transaction.

 

Methods inherited from class oracle.olapi.OLAPIRuntimeException
getLocalizedMessage, getLocalizedMessage, toString

 

Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace

 

Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

 

Constructor Detail

WriteLockException

public WriteLockException(MetadataState state,
                          Transaction transaction,
                          Transaction activeTransaction)
Creates a WriteLockException.
Parameters:
state - The MetadataState that cannot change state.
transaction - The Transaction in which the attempt to change the MetadataState failed.
activeTransaction - The Transaction in which the MetadataState is active.

Method Detail

getMetadataState

public MetadataState getMetadataState()
Gets the MetadataState that cannot change state in the Transaction returned by the getTransaction method because the MetadataState is active in the Transaction returned by the getActiveTransaction method.
Returns:
The MetadataState that cannot change state.

getTransaction

public Transaction getTransaction()
Gets the Transaction in which the attempt to change a MetadataState failed because the MetadataState is not active in the Transaction.
Returns:
The Transaction in which the attempt to change the MetadataState failed.

getActiveTransaction

public Transaction getActiveTransaction()
Gets the Transaction in which the MetadataState is currently being changed. This Transaction must be prepared and committed, or rolled back, before another Transaction can change the MetadataState.
Returns:
The Transaction in which the MetadataState is active.

Skip navigation links

Copyright © 2002, 2007, Oracle. All rights reserved.