Class BaseFunctionDefinitionBuilder<T extends BaseFunctionDefinitionBuilder<T>>
- java.lang.Object
-
- com.orchestranetworks.addon.dpra.function.BaseFunctionDefinitionBuilder<T>
-
- Direct Known Subclasses:
FunctionDefinitionOnDatasetBuilder,FunctionDefinitionOnDataspaceBuilder,FunctionDefinitionOnTableLevelBuilder,FunctionDefinitionOnWorkflowBuilder
public abstract class BaseFunctionDefinitionBuilder<T extends BaseFunctionDefinitionBuilder<T>> extends java.lang.ObjectBase builder ofFunctionDefinitioninstances.- Since:
- 4.2.0
- See Also:
FunctionDefinitionBuilder
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TdisableAlert()Disables alerts.TwithDescription(com.onwbp.base.text.UserMessage localizedDescription)Sets the description.TwithDescription(java.lang.String descriptionValue)Sets the description.TwithInputs(InputDefinition... inputs)Sets the input definitions.TwithLabel(com.onwbp.base.text.UserMessage localizedLabel)Sets the label.TwithLabel(java.lang.String labelValue)Sets the label.TwithOutputs(OutputDefinition... outputs)Sets the output definitions.
-
-
-
Method Detail
-
withLabel
public final T withLabel(java.lang.String labelValue)
Sets the label.- See Also:
FunctionDefinition.getLabel()
-
withLabel
public final T withLabel(com.onwbp.base.text.UserMessage localizedLabel)
Sets the label.- See Also:
FunctionDefinition.getLabel()
-
withDescription
public final T withDescription(java.lang.String descriptionValue)
Sets the description.- See Also:
FunctionDefinition.getDescription()
-
withDescription
public final T withDescription(com.onwbp.base.text.UserMessage localizedDescription)
Sets the description.- See Also:
FunctionDefinition.getDescription()
-
withInputs
public final T withInputs(InputDefinition... inputs)
Sets the input definitions.- See Also:
FunctionDefinition.getInputDefinitions()
-
withOutputs
public final T withOutputs(OutputDefinition... outputs)
Sets the output definitions.
-
disableAlert
public final T disableAlert()
Disables alerts.- See Also:
FunctionDefinition.isAlertSupported()
-
-