ObjectDB ObjectDB

setCopyOnAttach(flag) - JDO PersistenceManagerFactory's method

Method
javax.jdo.PersistenceManagerFactory
void setCopyOnAttach(
  boolean flag
)

Sets the default copyOnAttach setting for all PersistenceManager instances obtained from this factory.

CopyOnAttach set to true specifies that during makePersistent, copies are made of detached parameter instances. With this flag set to false, detached parameter instances are attached directly and change their state from detached-clean to persistent-clean or from detached-dirty to persistent-dirty.

Parameters:
flag -
Since:
JDO 2.1
See Also:
getCopyOnAttach()