tx = getTransaction();
info = _scope.getPersistenceInfo( object.getClass() );
if ( info == null )
throw new ClassNotPersistenceCapableException( Messages.format("persist.classNotPersistenceCapable", object.getClass().getName()) );
tx.create( info.engine, info.molder, object, null );
}
public void update( Object object )
throws ClassNotPersistenceCapableException, ObjectModifiedException,
TransactionNotInProgressException, PersistenceException