-
public interface SchemaVersionProviderAn SPI that can be used to provide a schema version to the jOOQ code generator.If between subsequent meta data accesses, at least one
SchemaDefinition's version changes, that schema'sCatalogDefinition's version must change as well. In other words, it can be safely assumed that when between two subsequent schema meta data accesses, theCatalogDefinition's version stays the same, allSchemaDefinition's versions have stayed the same as well.A
SchemaDefinitionis said to be unversioned ifversion(SchemaDefinition)returnsnull.- Author:
- Lukas Eder
- See Also:
CatalogVersionProvider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringversion(SchemaDefinition schema)Get a custom schema version.
-
-
-
Method Detail
-
version
String version(SchemaDefinition schema)
Get a custom schema version.
-
-