| Class | Description |
|---|---|
| ClientsClassDefinition | |
| ClientsClassDefinition.ClientsClassDefinitionBuilder<T extends ClientsClassDefinition.ClientsClassDefinitionBuilder> | |
| CustomDefinition |
Recipe for
CustomType |
| EntityDefinition |
Recipe for
EntityType |
| EntityDefinition.EntityDefinitionBuilder |
Full recipe for Entity,
allows to set all optional attributes of EntityDefinition:
Id-property, ignoredProperties and typeAlias, for example:
EntityDefinitionBuilder.entityDefinition(entity)
.withIdPropertyName(idPropertyName)
.withIgnoredProperties(ignoredProperties)
.withTypeName(typeName)
.build()
|
| ValueDefinition | |
| ValueObjectDefinition |
Recipe for
ValueObjectType |
| ValueObjectDefinition.ValueObjectDefinitionBuilder |
Full recipe for ValueObject,
allows to set all optional attributes of ValueObjectDefinition:
ignoredProperties and typeName, for example:
ValueObjectDefinitionBuilder.valueObjectDefinition(valueObject)
.withIgnoredProperties(ignoredProperties)
.withTypeName(typeName)
.build()
|