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 PersistentNewFlushed extends PersistentNew { 33 34 public PersistentNewFlushed() { 35 super(); 36 isPersistentInDataStore = true; 37 updateAction = ActionDesc.LOG_UPDATE; 38 stateType = P_NEW_FLUSHED; 39 } 40 41 public LifeCycleState transitionDeletePersistent() { 42 return changeState(P_NEW_FLUSHED_DELETED); 43 } 44 } 45 46 47 48 49 50 51 52 53 54 55 | Popular Tags |