19 package testsuite.clusterj.model;
21 import com.mysql.clusterj.annotation.Index;
22 import com.mysql.clusterj.annotation.NotPersistent;
23 import com.mysql.clusterj.annotation.PersistenceCapable;
24 import com.mysql.clusterj.annotation.PrimaryKey;
25 import java.util.Collection;
29 @PersistenceCapable(
table=
"t_basic")
39 @
Index(name=
"idx_unique_hash_magic")
41 void setMagic(
int magic);
43 @
Index(name=
"idx_btree_age")
45 void setAge(Integer age);
48 Collection<NotPersistentTypes> getNotPersistentChildren();
49 void setNotPersistentChildren(Collection<NotPersistentTypes> value);
52 int getNotPersistentInt();
53 void setNotPersistentInt(
int value);
56 Integer getNotPersistentInteger();
57 void setNotPersistentInteger(Integer value);