Class AbstractDtoConfig
java.lang.Object
de.hybris.bootstrap.codegenerator.platformwebservices.dto.AbstractDtoConfig
- All Implemented Interfaces:
DtoConfig
- Direct Known Subclasses:
CollectionDtoConfig,SingleDtoConfig
@Deprecated(since="1818",
forRemoval=true)
public abstract class AbstractDtoConfig
extends Object
implements DtoConfig
Deprecated, for removal: This API element is subject to removal in a future version.
since 1818
Provides any information needed for dto generation.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected WebservicesConfigDeprecated, for removal: This API element is subject to removal in a future version. -
Constructor Summary
ConstructorsConstructorDescriptionAbstractDtoConfig(YComposedType type, String modelClassName, String dtoClassName, String plural, WebservicesConfig provider) Deprecated, for removal: This API element is subject to removal in a future version. -
Method Summary
Modifier and TypeMethodDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Deprecated, 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.final voidsetDtoClassName(String dtoClassName) Deprecated, for removal: This API element is subject to removal in a future version.voidsetDtoPackage(String dtoPackage) Deprecated, for removal: This API element is subject to removal in a future version.final voidsetModelClassName(String modelClassName) Deprecated, for removal: This API element is subject to removal in a future version.voidDeprecated, for removal: This API element is subject to removal in a future version.voidsetSingular(String singular) Deprecated, for removal: This API element is subject to removal in a future version.voidsetType(YComposedType type) Deprecated, for removal: This API element is subject to removal in a future version.
-
Field Details
-
provider
Deprecated, for removal: This API element is subject to removal in a future version.
-
-
Constructor Details
-
AbstractDtoConfig
public AbstractDtoConfig(YComposedType type, String modelClassName, String dtoClassName, String plural, WebservicesConfig provider) Deprecated, for removal: This API element is subject to removal in a future version.
-
-
Method Details
-
getConfigProvider
Deprecated, for removal: This API element is subject to removal in a future version. -
setDtoPackage
Deprecated, for removal: This API element is subject to removal in a future version.- Parameters:
dtoPackage- the dtoPackage to set
-
getDtoPackage
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:DtoConfigReturns the package name for this dto.- Specified by:
getDtoPackagein interfaceDtoConfig- Returns:
- the dtoPackage
-
getModelClassName
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:DtoConfigReturns the model-class name. Same like callingClass.getName()on model class.- Specified by:
getModelClassNamein interfaceDtoConfig- Returns:
- the modelClassName
-
setModelClassName
Deprecated, for removal: This API element is subject to removal in a future version.- Parameters:
modelClassName- the modelClassName to set
-
getModelClassSimpleName
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:DtoConfigReturns the simple model class name. Same like callingClass.getSimpleName()on model class.- Specified by:
getModelClassSimpleNamein interfaceDtoConfig- Returns:
- the modelClassSimpleName
-
getDtoClassName
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:DtoConfigReturns the dto-class name. Same like callingClass.getName()on dto class.- Specified by:
getDtoClassNamein interfaceDtoConfig- Returns:
- the dtoClassName
-
setDtoClassName
Deprecated, for removal: This API element is subject to removal in a future version.- Parameters:
dtoClassName- the dtoClassName to set
-
getDtoClassSimpleName
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:DtoConfigReturns the simple dto class name. Same likeClass.getSimpleName()on dto class.- Specified by:
getDtoClassSimpleNamein interfaceDtoConfig- Returns:
- dtoClassSimpleName
-
setType
Deprecated, for removal: This API element is subject to removal in a future version.- Parameters:
type- the type to set
-
getType
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:DtoConfigReturns theYComposedType. -
getSingular
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:DtoConfigResult is a noun which every human should recognize as singular representation for this dto/model.- Specified by:
getSingularin interfaceDtoConfig- Returns:
- singular
-
setSingular
Deprecated, for removal: This API element is subject to removal in a future version.- Parameters:
singular- the singular to set
-
getPlural
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:DtoConfigResult is a noun which every human should recognize as plural representation for this dto/model. -
setPlural
Deprecated, for removal: This API element is subject to removal in a future version.- Parameters:
plural- the plural to set
-