Handle SEQUENCE strategies, which are not yet implemented. This'll fix David Hoover's super-strict compilation urges, besides being a generally good idea.

This commit is contained in:
Par Winzell
2008-07-21 19:36:47 +00:00
parent eac0e214ef
commit e3adfea99e
@@ -173,6 +173,10 @@ public class DepotMarshaller<T extends PersistentRecord>
_valueGenerators.put(
field.getName(), new TableValueGenerator(generator, gv, this, fm));
break;
case SEQUENCE: // TODO
throw new IllegalArgumentException(
"SEQUENCE key generation strategy not yet supported.");
}
}