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.Indices;
 
   24 import com.mysql.clusterj.annotation.PersistenceCapable;
 
   25 import com.mysql.clusterj.annotation.PrimaryKey;
 
   45     @Index(
name=
"idx_bytes_null_both", columns=@Column(
name=
"bytes_null_both"))
 
   47 @PersistenceCapable(
table=
"bytestype")
 
   48 @PrimaryKey(column=
"id")
 
   57     byte[] getBytes_null_hash();
 
   58     void setBytes_null_hash(byte[] value);
 
   62     byte[] getBytes_null_btree();
 
   63     void setBytes_null_btree(byte[] value);
 
   66     byte[] getBytes_null_both();
 
   67     void setBytes_null_both(byte[] value);
 
   70     byte[] getBytes_null_none();
 
   71     void setBytes_null_none(byte[] value);