1 package org.apache.ojb.otm.states; 2 3 17 18 22 public class Transient extends State 23 { 24 25 Transient() 26 { 27 } 28 29 32 public String toString() 33 { 34 return "Transient"; 35 } 36 37 39 42 public State makePersistent() 43 throws IllegalObjectStateException 44 { 45 return State.PERSISTENT_NEW; 46 } 47 48 public State rollback() 49 throws IllegalObjectStateException 50 { 51 return this; 52 } 53 } 54 | Popular Tags |