Interface RemoteParameterProvider
-
- All Superinterfaces:
ServerExtension
,TeamCityExtension
public interface RemoteParameterProvider extends ServerExtension
Provider that allows to resolve aRemoteParameter
from aParameter
- Since:
- 2023.05
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RemoteParameter
createRemoteParameter(SBuild build, Parameter parameter)
Creates a remote parameter that hold the details of what should be passed down to the agent.String
getRemoteParameterType()
Returns Remote parameter type that is used to populate the instances ofRemoteParameterType
-
-
-
Method Detail
-
getRemoteParameterType
@NotNull String getRemoteParameterType()
Returns Remote parameter type that is used to populate the instances ofRemoteParameterType
- Returns:
- see above
- See Also:
RemoteParameterType
-
createRemoteParameter
@NotNull RemoteParameter createRemoteParameter(@NotNull SBuild build, @NotNull Parameter parameter)
Creates a remote parameter that hold the details of what should be passed down to the agent.- Returns:
- see above
-
-