1 23 24 27 28 package com.sun.jdo.spi.persistence.support.sqlstore.state; 29 30 import com.sun.jdo.spi.persistence.support.sqlstore.ActionDesc; 31 32 public class PersistentDeletedFlushed extends PersistentDeleted { 33 public PersistentDeletedFlushed() { 34 super(); 35 isPersistentInDataStore = false; 36 updateAction = ActionDesc.LOG_NOOP; 37 stateType = P_DELETED_FLUSHED; 38 } 39 } 40 41 42 43 44 45 46 47 48 49 | Popular Tags |