Class BaseServiceOutputParameter

    • Field Detail

      • path

        protected java.lang.String path
      • nullValueConfig

        protected java.lang.String nullValueConfig
      • missingValueConfig

        protected java.lang.String missingValueConfig
      • nullValueDefault

        protected java.lang.String nullValueDefault
      • missingValueDefault

        protected java.lang.String missingValueDefault
    • Constructor Detail

      • BaseServiceOutputParameter

        public BaseServiceOutputParameter()
    • Method Detail

      • getPath

        public java.lang.String getPath()
        Description copied from interface: ServiceOutputParameter
        Returns the optional path where the parameter value will be retrieved out of the returned service invocation result.
        Specified by:
        getPath in interface ServiceOutputParameter
        Returns:
        the optional path for the result value
      • setPath

        public void setPath​(java.lang.String path)
      • getNullValueConfig

        public java.lang.String getNullValueConfig()
        Description copied from interface: ServiceOutputParameter
        Returns the configuration on how to handle a null value returned by the service invocation by this parameter. Might be 'remove', 'setToDefault', 'setToNull' or 'throwException' (see constant definition documentation for details).
        Specified by:
        getNullValueConfig in interface ServiceOutputParameter
        Returns:
        the configuration on how to handle a null value as the output for this parameter
      • setNullValueConfig

        public void setNullValueConfig​(java.lang.String nullValueConfig)
      • getMissingValueConfig

        public java.lang.String getMissingValueConfig()
        Description copied from interface: ServiceOutputParameter
        Returns the configuration on how to handle a missing value returned by the service invocation by this parameter. Might be 'ignore', 'setToDefault', 'setToNull' or 'throwException' (see constant definition documentation for details).
        Specified by:
        getMissingValueConfig in interface ServiceOutputParameter
        Returns:
        the configuration on how to handle a missing value as the output for this parameter
      • setMissingValueConfig

        public void setMissingValueConfig​(java.lang.String missingValueConfig)
      • setNullValueDefault

        public void setNullValueDefault​(java.lang.String nullValueDefault)
      • setMissingValueDefault

        public void setMissingValueDefault​(java.lang.String missingValueDefault)