Interface WebComponentParameter
-
public interface WebComponentParameterSpecifies a parameter that can be used in the HTTP invocation of a Web component.- Since:
- 5.8.0
- See Also:
WebComponentDeclarationContext
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UserMessagegetDescription()Returns the description of the parameter.UserMessagegetLabel()Returns the label of the parameter.StringgetName()Returns the name of the parameter.booleanisInput()Returns whether the parameter is an input parameter.booleanisOutput()Returns whether the parameter is an output parameter.voidsetDescription(UserMessage description)Sets the description of the parameter.voidsetInput(boolean input)Enables or disables the parameter as an input parameter.voidsetLabel(UserMessage label)Sets the label of the parameter.voidsetOutput(boolean output)Enables or disables the parameter as an output parameter.
-
-
-
Method Detail
-
getName
String getName()
Returns the name of the parameter.
-
getLabel
UserMessage getLabel()
Returns the label of the parameter.
-
setLabel
void setLabel(UserMessage label)
Sets the label of the parameter.
-
getDescription
UserMessage getDescription()
Returns the description of the parameter.
-
setDescription
void setDescription(UserMessage description)
Sets the description of the parameter.
-
isInput
boolean isInput()
Returns whether the parameter is an input parameter.
-
setInput
void setInput(boolean input)
Enables or disables the parameter as an input parameter.
-
isOutput
boolean isOutput()
Returns whether the parameter is an output parameter.
-
setOutput
void setOutput(boolean output)
Enables or disables the parameter as an output parameter.
-
-