Package com.atlassian.bamboo
Interface ResultKey
-
- All Superinterfaces:
Key
,Serializable
- All Known Subinterfaces:
DeploymentResultKey
- All Known Implementing Classes:
DeploymentResultKeyAsPlanResultKey
,DeploymentResultKeyImpl
,PlanResultKey
,RestDeploymentResultKey
,RestResultKey
public interface ResultKey extends Key, Serializable
Common interface to identify a result of running something identified by aKey
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description @NotNull Key
getEntityKey()
What is this a result of.@NotNull String
getKey()
int
getResultNumber()
Deprecated.since 6.5, usegetResultNumberLong()
long
getResultNumberLong()
-
-
-
Method Detail
-
getKey
@NotNull @NotNull String getKey()
-
getEntityKey
@NotNull @NotNull Key getEntityKey()
What is this a result of.- Returns:
-
getResultNumber
@Deprecated int getResultNumber()
Deprecated.since 6.5, usegetResultNumberLong()
- Returns:
- Result number
-
getResultNumberLong
long getResultNumberLong()
- Returns:
- Result number
-
-