Any thoughts on "hooking-up" the UUID generation like the other id
generators?

I was thinking something along these lines:
either:
IdentifierUtils.nextUUID([UUID.VERSION_ONE | UUID.VERSION_FOUR]);
-or-
IdentifierUtils.nextVersionOneUUID();
IdentifierUtils.nextVersionFourUUID([void | boolean:secure]);

And same thought on the factory:
either:
IdentifierGeneratorFactory factory =
IdentifierGeneratorFactory.newInstance();
UUIDGenerator generator = factory.uuidGenerator(UUID.VERSION_ONE |
UUID.VERSION_FOUR);
-or-
VersionOneGenerator generator = factory.uuidVersionOneGenerator();
VersionFourGenerator generator = factory.uuidVersionFourGenerator();


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to