Interface Detachable


public interface Detachable
This interface is implemented by classes that can be detached from the persistence context and later attached. The interface includes the contract by which the StateManager can set the object id, version, BitSet of loaded fields, and BitSet of modified fields so they are preserved while outside the persistence environment.

The detached state is stored as a field in each instance of Detachable. The field is serialized so as to maintain the state of the instance while detached. While detached, only the BitSet of modified fields will be modified. The structure of the Object[] dnDetachedState is as follows:

  • dnDetachedState[0]: the Object Id of the instance
  • dnDetachedState[1]: the Version of the instance
  • dnDetachedState[2]: a BitSet of loaded fields
  • dnDetachedState[3]: a BitSet of modified fields
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    This method calls the StateManager with the current detached state instance as a parameter and replaces the current detached state instance with the value provided by the StateManager.
  • Method Details

    • dnReplaceDetachedState

      void dnReplaceDetachedState()
      This method calls the StateManager with the current detached state instance as a parameter and replaces the current detached state instance with the value provided by the StateManager.