Class ResultSummarySearchCriteria
- java.lang.Object
-
- com.atlassian.bamboo.resultsummary.search.ResultSummarySearchCriteria
-
@ExperimentalApi public class ResultSummarySearchCriteria extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ResultSummarySearchCriteria.Builder
-
Field Summary
Fields Modifier and Type Field Description static int
MAXIMUM_ARGUMENT_LIST_LENGTH
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Long>
getAgentIds()
List of related agent ids.Date
getCompletedAfter()
Date
getCompletedBefore()
Date
getDateFrom()
Date
getDateTo()
Set<LifeCycleState>
getLifeCycleStates()
int
getMaxCount()
List<PlanKey>
getPlanKeys()
List of related plan keys.Optional<Boolean>
getSpecsResultsFlag()
Select only specs or only regular results.boolean
isOrderedByDate()
-
-
-
Field Detail
-
MAXIMUM_ARGUMENT_LIST_LENGTH
public static final int MAXIMUM_ARGUMENT_LIST_LENGTH
- See Also:
- Constant Field Values
-
-
Method Detail
-
getMaxCount
public int getMaxCount()
-
getLifeCycleStates
public Set<LifeCycleState> getLifeCycleStates()
-
getAgentIds
public List<Long> getAgentIds()
List of related agent ids. The length of this list is capped atMAXIMUM_ARGUMENT_LIST_LENGTH
elements when executing the query.
-
getPlanKeys
public List<PlanKey> getPlanKeys()
List of related plan keys. The length of this list is capped atMAXIMUM_ARGUMENT_LIST_LENGTH
elements when executing the query.
-
getDateFrom
public Date getDateFrom()
-
getDateTo
public Date getDateTo()
-
getCompletedBefore
public Date getCompletedBefore()
-
getCompletedAfter
public Date getCompletedAfter()
-
isOrderedByDate
public boolean isOrderedByDate()
-
-