Class FlowIdMapper
- java.lang.Object
-
- jetbrains.buildServer.serverSide.buildLog.FlowIdMapper
-
public class FlowIdMapper extends Object
-
-
Constructor Summary
Constructors Constructor Description FlowIdMapper()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static String
getFlowIdentifier(int flowId)
Maps internal build-log flowId to a string that will be associated with provided internal id if supplied to build-log subsystem.static int
map(String flowId)
Maps flowId to internal build-log representation.
-
-
-
Method Detail
-
map
public static int map(@NotNull String flowId)
Maps flowId to internal build-log representation.- Parameters:
flowId
- an external representaion of flowId.- Returns:
- an int value that is used as flow identifier by build-log subsytems.
-
getFlowIdentifier
@NotNull public static String getFlowIdentifier(int flowId)
Maps internal build-log flowId to a string that will be associated with provided internal id if supplied to build-log subsystem.- Parameters:
flowId
- an internal representaion of flowId.- Returns:
- a String flow identifier value that will be mapped to provided id if supplied to
map(String)
method.
-
-