jsoda.registerModel(SampleCustom.class, DbType.SimpleDB);
// Sample object to show how the fields are transformed via the custom annotations
try {
SampleCustom obj = new SampleCustom(101, "this-long-long-name", "custom object");
jsoda.preStoreSteps(obj);
System.out.println(obj);
} catch(Exception e) {
System.out.println(e);
}