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

git-svn-id: https://samskivert.googlecode.com/svn/trunk@2338 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
zell
2008-07-21 19:36:47 +00:00
parent 30ae1be3c8
commit b619e1da06
@@ -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.");
}
}