Interface DtoConfig
- All Known Implementing Classes:
AbstractDtoConfig,CollectionDtoConfig,SingleDtoConfig
Deprecated, for removal: This API element is subject to removal in a future version.
since 1818
Various DTO information.
-
Method Summary
Modifier and TypeMethodDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Returns the dto-class name.Deprecated, for removal: This API element is subject to removal in a future version.Returns the simple dto class name.Deprecated, for removal: This API element is subject to removal in a future version.Returns the package name for this dto.Deprecated, for removal: This API element is subject to removal in a future version.Returns the model-class name.Deprecated, for removal: This API element is subject to removal in a future version.Returns the simple model class name.Deprecated, for removal: This API element is subject to removal in a future version.Result is a noun which every human should recognize as plural representation for this dto/model.Deprecated, for removal: This API element is subject to removal in a future version.Result is a noun which every human should recognize as singular representation for this dto/model.getType()Deprecated, for removal: This API element is subject to removal in a future version.Returns theYComposedType.
-
Method Details
-
getType
YComposedType getType()Deprecated, for removal: This API element is subject to removal in a future version.Returns theYComposedType.- Returns:
YComposedType
-
getDtoClassName
String getDtoClassName()Deprecated, for removal: This API element is subject to removal in a future version.Returns the dto-class name. Same like callingClass.getName()on dto class. -
getDtoClassSimpleName
String getDtoClassSimpleName()Deprecated, for removal: This API element is subject to removal in a future version.Returns the simple dto class name. Same likeClass.getSimpleName()on dto class.- Returns:
- simple class literal
-
getModelClassName
String getModelClassName()Deprecated, for removal: This API element is subject to removal in a future version.Returns the model-class name. Same like callingClass.getName()on model class.- Returns:
- full class literal
-
getModelClassSimpleName
String getModelClassSimpleName()Deprecated, for removal: This API element is subject to removal in a future version.Returns the simple model class name. Same like callingClass.getSimpleName()on model class.- Returns:
- simple class literal
-
getSingular
String getSingular()Deprecated, for removal: This API element is subject to removal in a future version.Result is a noun which every human should recognize as singular representation for this dto/model.- Returns:
- singular
-
getPlural
String getPlural()Deprecated, for removal: This API element is subject to removal in a future version.Result is a noun which every human should recognize as plural representation for this dto/model.- Returns:
- plural
-
getDtoPackage
String getDtoPackage()Deprecated, for removal: This API element is subject to removal in a future version.Returns the package name for this dto.- Returns:
- package name of resource
-