-
public class KobbyKotlinDtoBuilderExtensionConfiguration of DTO builders generation
-
-
Constructor Summary
Constructors Constructor Description KobbyKotlinDtoBuilderExtension()
-
Method Summary
Modifier and Type Method Description final BooleangetEnabled()Is DTO builders generation enabledDefault: true final UnitsetEnabled(Boolean enabled)Is DTO builders generation enabledDefault: true final StringgetPrefix()Prefix of DTO builder classes final UnitsetPrefix(String prefix)Prefix of DTO builder classes final StringgetPostfix()Postfix of DTO builder classesDefault: "Builder" final UnitsetPostfix(String postfix)Postfix of DTO builder classesDefault: "Builder" final StringgetCopyFun()Name of builder based "copy" function for DTO classesDefault: "copy" final UnitsetCopyFun(String copyFun)Name of builder based "copy" function for DTO classesDefault: "copy" -
-
Method Detail
-
getEnabled
final Boolean getEnabled()
Is DTO builders generation enabled
Default: true
-
setEnabled
final Unit setEnabled(Boolean enabled)
Is DTO builders generation enabled
Default: true
-
getPostfix
final String getPostfix()
Postfix of DTO builder classes
Default: "Builder"
-
setPostfix
final Unit setPostfix(String postfix)
Postfix of DTO builder classes
Default: "Builder"
-
getCopyFun
final String getCopyFun()
Name of builder based "copy" function for DTO classes
Default: "copy"
-
setCopyFun
final Unit setCopyFun(String copyFun)
Name of builder based "copy" function for DTO classes
Default: "copy"
-
-
-
-