Uses of Interface
de.xima.fc.interfaces.workflow.value.IValueCreator
-
Packages that use IValueCreator Package Description de.xima.fc.interfaces.workflow.execution de.xima.fc.interfaces.workflow.params de.xima.fc.interfaces.workflow.value -
-
Uses of IValueCreator in de.xima.fc.interfaces.workflow.execution
Methods in de.xima.fc.interfaces.workflow.execution with parameters of type IValueCreator Modifier and Type Method Description IOnTaskBeginRetValBuilderIOnTaskBeginRetValBuilder. triggerData(IValueCreator triggerDataCreator)Sets (replaces) the data made available while the task belonging to the trigger is being executed. -
Uses of IValueCreator in de.xima.fc.interfaces.workflow.params
Methods in de.xima.fc.interfaces.workflow.params with parameters of type IValueCreator Modifier and Type Method Description BuilderICompletionResultBuilder. always(IValueCreator alwaysValue)Sets (replaces) the value made available by the node regardless of whether it was executed successfully (or threw an exception).INodeThrewExceptionBuilderINodeThrewExceptionBuilder. always(IValueCreator alwaysValue)INormalCompletionResultBuilderINormalCompletionResultBuilder. always(IValueCreator alwaysValue)default INodeThrewExceptionBuilderINodeThrewExceptionBuilder. error(String errorCode, IValueCreator valueCreator)Sets (replaces) the error type and value describing the exception in more detail.default INodeThrewExceptionBuilderINodeThrewExceptionBuilder. error(String errorCode, Class<?> memberClass, IValueCreator valueCreator)Deprecated.default <T> voidINodeExecutionParams. softError(String errorCode, Class<T> memberClass, String message, IValueCreator valueCreator)Deprecated.default <T> voidINodeExecutionParams. softError(String errorCode, Class<T> memberClass, String message, IValueCreator valueCreator, Throwable cause)default voidINodeExecutionParams. softError(String errorCode, String message, IValueCreator valueCreator)Adds a soft error to the list of soft errors.default voidINodeExecutionParams. softError(String errorCode, String message, IValueCreator valueCreator, Throwable cause)Adds a soft error to the list of soft errors.default <T> TBuilderISuccessResultBuilder. softError(String errorCode, Class<T> memberClass, String message, IValueCreator valueCreator, Throwable cause)default <T> TBuilderISuccessResultBuilder. softError(String errorCode, String message, IValueCreator valueCreator, Throwable cause)Adds a soft error to the list of soft errors.INormalCompletionResultBuilderINormalCompletionResultBuilder. success(IValueCreator successValue)TBuilderISuccessResultBuilder. success(IValueCreator successValue)Sets (replaces) the value returned by the node when it was executed successfully.ICurrentValueBuilderICurrentValueBuilder. withValueBuilder(IValueCreator value)Configures the value returned by the node while it is being executed. -
Uses of IValueCreator in de.xima.fc.interfaces.workflow.value
Methods in de.xima.fc.interfaces.workflow.value with parameters of type IValueCreator Modifier and Type Method Description IListValueDescriptorBuilder<V>IListValueDescriptorBuilder. defaultValue(int index, IValueCreator creator)Sets the default value for the element at the given index.IMapValueDescriptorBuilder<V>IMapValueDescriptorBuilder. defaultValue(String key, IValueCreator creator)Sets the default value for the element at the given key.IRecordValueBuilderIRecordValueBuilder. property(String key, IValueCreator creator)Supplies a value for the given property name.default IRecordValueBuilderIRecordValueBuilder. property(String key, Class<?> memberClass, IValueCreator creator)Deprecated.IMapValueBuilder<V>IMapValueBuilder. put(String key, IValueCreator creator)Sets the value in the map at the given key to the given value.IListValueBuilder<V>IListValueBuilder. set(int index, IValueCreator creator)Sets the value at the given index to the given value.ITupleValueBuilderITupleValueBuilder. set(int index, IValueCreator creator)Sets the value at the given index of the tuple.default ITupleValueBuilderITupleValueBuilder. set(int index, Class<?> memberClass, IValueCreator creator)Deprecated.IUnionValueBuilder<D>IUnionValueBuilder. value(D discriminator, IValueCreator creator)Sets the value of the union at the given member discriminator to the given value.default IUnionValueBuilder<D>IUnionValueBuilder. value(D discriminator, Class<?> memberClass, IValueCreator creator)Deprecated.UseIUnionValueBuilder.value(Object, IValueCreator), possibly in combination withIValueBuilder.whenString(Consumer)etc.
-