Interface DtoConfig

  • All Known Implementing Classes:
    AbstractDtoConfig, CollectionDtoConfig, SingleDtoConfig

    @Deprecated(since="1818",
                forRemoval=true)
    public interface DtoConfig
    Deprecated, for removal: This API element is subject to removal in a future version.
    since 1818
    Various DTO information.
    • Method Summary

      All Methods Instance Methods Abstract Methods Deprecated Methods 
      Modifier and Type Method Description
      java.lang.String getDtoClassName()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Returns the dto-class name.
      java.lang.String getDtoClassSimpleName()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Returns the simple dto class name.
      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.
      java.lang.String getModelClassName()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Returns the model-class name.
      java.lang.String getModelClassSimpleName()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Returns the simple model class name.
      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.
      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.
      YComposedType getType()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Returns the YComposedType.
    • Method Detail

      • 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 calling Class.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 like Class.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 calling Class.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 calling Class.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