Class WellknownParameterArguments
- java.lang.Object
-
- jetbrains.buildServer.serverSide.parameters.WellknownParameterArguments
-
public class WellknownParameterArguments extends Object
Set of wellknown parameter control arguments that supported and handled by the core.- Since:
- 8.0 (introduced in 7.0)
- Author:
- Eugene Petrenko (eugene.petrenko@gmail.com) Date: 28.09.11 12:11
-
-
Field Summary
Fields Modifier and Type Field Description static WellknownParameter<Boolean>
ARGUMENT_ALLOW_INVALID_DEFAULT_VALUE
Deprecated.useARGUMENT_VALIDATE_DEFAULT_VALUE
, this field left for compatibilitystatic WellknownParameter<String>
ARGUMENT_DESCRIPTION
Value of this attribute is string.static WellknownParameter<ControlDisplayMode>
ARGUMENT_DISPLAY
Values of this attribute are: 'hidden', 'prompt', 'normal' (seeControlDisplayMode
) 'normal' means normal parameter 'hidden' means to hide parameter from custom run dialog 'prompt' means to make TeamCity show custom run dialog event if 'Run' button was pressed.static WellknownParameter<String>
ARGUMENT_LABEL
Global argument to let framework show this label instead of parameter name in editing form.static WellknownParameter<Double>
ARGUMENT_ORDER_NUMBER
Value of this attribute is string.static WellknownParameter<Boolean>
ARGUMENT_VALIDATE_DEFAULT_VALUE
Value of this attribute is boolean.static WellknownParameter<Boolean>
REQUIRED
Value of this attribute is boolean Use this value to indicate that parameter is required
-
Constructor Summary
Constructors Constructor Description WellknownParameterArguments()
-
-
-
Field Detail
-
ARGUMENT_LABEL
public static final WellknownParameter<String> ARGUMENT_LABEL
Global argument to let framework show this label instead of parameter name in editing form.- Since:
- 8.0 (introduced in 7.0)
-
ARGUMENT_DISPLAY
public static final WellknownParameter<ControlDisplayMode> ARGUMENT_DISPLAY
Values of this attribute are: 'hidden', 'prompt', 'normal' (seeControlDisplayMode
) 'normal' means normal parameter 'hidden' means to hide parameter from custom run dialog 'prompt' means to make TeamCity show custom run dialog event if 'Run' button was pressed.- Since:
- 8.0 (introduced in 7.0)
- See Also:
ControlDisplayMode
-
ARGUMENT_ALLOW_INVALID_DEFAULT_VALUE
@Deprecated public static final WellknownParameter<Boolean> ARGUMENT_ALLOW_INVALID_DEFAULT_VALUE
Deprecated.useARGUMENT_VALIDATE_DEFAULT_VALUE
, this field left for compatibilityValue of this attribute is boolean. Use this value to disable validation of default parameter value- Since:
- 8.0 (introduced in 7.0)
-
ARGUMENT_VALIDATE_DEFAULT_VALUE
public static final WellknownParameter<Boolean> ARGUMENT_VALIDATE_DEFAULT_VALUE
Value of this attribute is boolean. Use this value to enable/disable validation of default parameter value- Since:
- 8.0
-
ARGUMENT_DESCRIPTION
public static final WellknownParameter<String> ARGUMENT_DESCRIPTION
Value of this attribute is string. Use this value add control description for a custom control.- Since:
- 8.0 (introduced in 7.0)
-
ARGUMENT_ORDER_NUMBER
public static final WellknownParameter<Double> ARGUMENT_ORDER_NUMBER
Value of this attribute is string. Use this value add control description for a custom control.- Since:
- 8.0 (introduced in 7.0)
-
REQUIRED
public static final WellknownParameter<Boolean> REQUIRED
Value of this attribute is boolean Use this value to indicate that parameter is required- Since:
- 2020.1
-
-