Class GenericParameterInfoDTO

java.lang.Object
de.aeb.xnsg.tariffcontent.af.v3.dto.GenericParameterInfoDTO

public class GenericParameterInfoDTO extends Object
Information about a specific parameter for an application.
  • Field Details

    • STRING

      public static final String STRING
      See Also:
    • BOOLEAN

      public static final String BOOLEAN
      See Also:
    • NUMBER

      public static final String NUMBER
      See Also:
    • DECIMAL

      public static final String DECIMAL
      See Also:
    • DATE

      public static final String DATE
      See Also:
    • DATE_SPECIFICATION

      public static final String DATE_SPECIFICATION
      See Also:
    • parameterName

      public String parameterName
      The name of the parameter in the application.
    • parameterDescription

      public String parameterDescription
      A description of the parameter in the application.
    • parameterType

      public String parameterType
      The type that the transmitted value will be casted to. The values are always transmitted as string.
    • parameterTypeDescription

      public String parameterTypeDescription
      A description of the parameter type.
    • mandatory

      public Boolean mandatory
      Defines whether or not the parameter is mandatory for opening the application. Mandatory parameters must be transmitted and will lead to an exception page on a cast error. Optional parameters may be omitted, and will only lead to an in-application warning on a cast error.
    • minLength

      public Integer minLength
      The minimal length of the sent value.
    • maxLength

      public Integer maxLength
      The maximal length of the sent value.
  • Constructor Details

    • GenericParameterInfoDTO

      public GenericParameterInfoDTO()
    • GenericParameterInfoDTO

      public GenericParameterInfoDTO(String fieldName, String fieldDescription, String fieldType, boolean mandatory)
  • Method Details