19 package testsuite.clusterj.model;
21 import com.mysql.clusterj.annotation.Column;
22 import com.mysql.clusterj.annotation.Index;
23 import com.mysql.clusterj.annotation.PersistenceCapable;
24 import com.mysql.clusterj.annotation.PrimaryKey;
26 @PersistenceCapable(
table=
"t_basic")
27 @PrimaryKey(column=
"id",
42 @
Index(name=
"idx_unique_hash_magic")
44 void setMagic(
int magic);
46 @
Index(name=
"idx_btree_age")
48 void setAge(Integer age);