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 java.lang.Object implements DtoConfigDeprecated, for removal: This API element is subject to removal in a future version.since 1818Provides any information needed for dto generation.
-
-
Field Summary
Fields Modifier and Type Field Description protected WebservicesConfigproviderDeprecated, for removal: This API element is subject to removal in a future version.
-
Constructor Summary
Constructors Constructor Description AbstractDtoConfig(YComposedType type, java.lang.String modelClassName, java.lang.String dtoClassName, java.lang.String plural, WebservicesConfig provider)Deprecated, for removal: This API element is subject to removal in a future version.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description WebservicesConfiggetConfigProvider()Deprecated, for removal: This API element is subject to removal in a future version.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.voidsetDtoClassName(java.lang.String dtoClassName)Deprecated, for removal: This API element is subject to removal in a future version.voidsetDtoPackage(java.lang.String dtoPackage)Deprecated, for removal: This API element is subject to removal in a future version.voidsetModelClassName(java.lang.String modelClassName)Deprecated, for removal: This API element is subject to removal in a future version.voidsetPlural(java.lang.String plural)Deprecated, for removal: This API element is subject to removal in a future version.voidsetSingular(java.lang.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 Detail
-
provider
protected WebservicesConfig provider
Deprecated, for removal: This API element is subject to removal in a future version.
-
-
Constructor Detail
-
AbstractDtoConfig
public AbstractDtoConfig(YComposedType type, java.lang.String modelClassName, java.lang.String dtoClassName, java.lang.String plural, WebservicesConfig provider)
Deprecated, for removal: This API element is subject to removal in a future version.
-
-
Method Detail
-
getConfigProvider
public WebservicesConfig getConfigProvider()
Deprecated, for removal: This API element is subject to removal in a future version.
-
setDtoPackage
public void setDtoPackage(java.lang.String dtoPackage)
Deprecated, for removal: This API element is subject to removal in a future version.- Parameters:
dtoPackage- the dtoPackage to set
-
getDtoPackage
public java.lang.String 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
public java.lang.String 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
public final void setModelClassName(java.lang.String modelClassName)
Deprecated, for removal: This API element is subject to removal in a future version.- Parameters:
modelClassName- the modelClassName to set
-
getModelClassSimpleName
public java.lang.String 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
public java.lang.String 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
public final void setDtoClassName(java.lang.String dtoClassName)
Deprecated, for removal: This API element is subject to removal in a future version.- Parameters:
dtoClassName- the dtoClassName to set
-
getDtoClassSimpleName
public java.lang.String 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
public void setType(YComposedType type)
Deprecated, for removal: This API element is subject to removal in a future version.- Parameters:
type- the type to set
-
getType
public YComposedType getType()
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:DtoConfigReturns theYComposedType.
-
getSingular
public java.lang.String 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
public void setSingular(java.lang.String singular)
Deprecated, for removal: This API element is subject to removal in a future version.- Parameters:
singular- the singular to set
-
getPlural
public java.lang.String 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
public void setPlural(java.lang.String plural)
Deprecated, for removal: This API element is subject to removal in a future version.- Parameters:
plural- the plural to set
-
-