Interface DtoConfig
-
- All Known Implementing Classes:
AbstractDtoConfig,CollectionDtoConfig,SingleDtoConfig
@Deprecated(since="1818", forRemoval=true) public interface DtoConfigDeprecated, for removal: This API element is subject to removal in a future version.since 1818Various DTO information.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.StringgetDtoClassName()Deprecated, for removal: This API element is subject to removal in a future version.Returns the dto-class name.java.lang.StringgetDtoClassSimpleName()Deprecated, for removal: This API element is subject to removal in a future version.Returns the simple dto class name.java.lang.StringgetDtoPackage()Deprecated, for removal: This API element is subject to removal in a future version.Returns the package name for this dto.java.lang.StringgetModelClassName()Deprecated, for removal: This API element is subject to removal in a future version.Returns the model-class name.java.lang.StringgetModelClassSimpleName()Deprecated, for removal: This API element is subject to removal in a future version.Returns the simple model class name.java.lang.StringgetPlural()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.java.lang.StringgetSingular()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.YComposedTypegetType()Deprecated, for removal: This API element is subject to removal in a future version.Returns theYComposedType.
-
-
-
Method Detail
-
getType
YComposedType getType()
Deprecated, for removal: This API element is subject to removal in a future version.Returns theYComposedType.- Returns:
YComposedType
-
getDtoClassName
java.lang.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
java.lang.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
java.lang.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
java.lang.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
java.lang.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
java.lang.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
java.lang.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
-
-