Merge branch 'java-support-uuid-generation' into fix-java-warnings

This commit is contained in:
Maelig Nantel 2016-01-21 11:21:22 +01:00
commit 94315a249d

View File

@ -711,6 +711,8 @@ public class DefaultCodegen {
datatype = "map";
} else if (p instanceof DecimalProperty) {
datatype = "number";
} else if ( p instanceof UUIDProperty) {
datatype = "UUID";
} else if (p instanceof RefProperty) {
try {
RefProperty r = (RefProperty) p;