mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2026-03-18 20:59:11 +00:00
A property defined as "type: string & format: uuid" is now generated in Java using "java.util.UUID" class instead of a classical String. In the Java, the UUID class do not provide a constructor. You may use the method UUID.fromString(<uuid_string>) to construct your UUID object.