Uses of Class
com.atlassian.bamboo.utils.Pair

Packages that use Pair
com.atlassian.bamboo.author   
com.atlassian.bamboo.build.tests   
com.atlassian.bamboo.event.spi   
com.atlassian.bamboo.plan   
com.atlassian.bamboo.resultsummary   
com.atlassian.bamboo.resultsummary.tests   
com.atlassian.bamboo.util   
com.atlassian.bamboo.utils   
com.atlassian.bamboo.ww2.actions.build.admin.create   
 

Uses of Pair in com.atlassian.bamboo.author
 

Methods in com.atlassian.bamboo.author that return Pair
static Pair<java.lang.Long,java.lang.Long> AuthorDuplicateNameHelper.getAuthorIdFromNameMarkerPattern(java.lang.String authorName)
          Decode original and duplicate author ids from the fake author name
 

Uses of Pair in com.atlassian.bamboo.build.tests
 

Methods in com.atlassian.bamboo.build.tests that return types with arguments of type Pair
 java.util.List<Pair<TestCase,java.lang.Float>> ViewTestsSummary.getLongestTimeToFixTests()
           
 java.util.List<Pair<TestCase,java.lang.Integer>> ViewTestsSummary.getMostFailingTests()
           
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> ViewTestsSummary.getRecentFailures(TestCase testCase, int number)
           
 

Uses of Pair in com.atlassian.bamboo.event.spi
 

Methods in com.atlassian.bamboo.event.spi that return types with arguments of type Pair
 java.util.Map<java.lang.String,Pair<java.lang.Runnable,java.util.Date>> ExecutorStats.getThreadToRunnableMappings()
          A mapping of a ThreadName to a pair of Runnable and the date the runnable started running.
 java.util.Map<java.lang.String,Pair<java.lang.Runnable,java.util.Date>> ExecutorStatsImpl.getThreadToRunnableMappings()
           
 java.util.concurrent.ConcurrentMap<java.lang.String,Pair<java.lang.Runnable,java.util.Date>> EventLoggingThreadPoolExecutor.getThreadToRunnableMappings()
           
 

Uses of Pair in com.atlassian.bamboo.plan
 

Methods in com.atlassian.bamboo.plan that return types with arguments of type Pair
 java.util.List<Pair<java.lang.Long,java.lang.Integer>> PlanHibernateDao.getBranchesCount()
           
 java.util.List<Pair<java.lang.Long,java.lang.Integer>> PlanDao.getBranchesCount()
          Returns the number of branches that exist for master plans in Bamboo.
 

Uses of Pair in com.atlassian.bamboo.resultsummary
 

Methods in com.atlassian.bamboo.resultsummary that return Pair
 Pair<java.lang.Integer,java.lang.Iterable<PlanKey>> BuildResultsSummaryHibernateDao.findPlanKeysFromAllOrphanedResultSummaries()
           
 Pair<java.lang.Integer,java.lang.Iterable<PlanKey>> BuildResultsSummaryDao.findPlanKeysFromAllOrphanedResultSummaries()
          Scans database for all the ResultsSummary objects in the database that do not have a matching Plan
 

Methods in com.atlassian.bamboo.resultsummary that return types with arguments of type Pair
 java.util.List<Pair<ArtifactLink,BuildResultsSummary>> BuildResultsSummaryHibernateDao.findBuildResultsWithArtifacts(java.lang.String planKey)
           
 java.util.List<Pair<ArtifactLink,BuildResultsSummary>> BuildResultsSummaryDao.findBuildResultsWithArtifacts(java.lang.String planKey)
          Find all build results which have matching artifacts.
 

Uses of Pair in com.atlassian.bamboo.resultsummary.tests
 

Methods in com.atlassian.bamboo.resultsummary.tests that return types with arguments of type Pair
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestsManager.getLastNFailingResults(TestCase testCase, int number)
          Retrieve the last n failing testResults for this given test case, latest first.
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestsManagerImpl.getLastNFailingResults(TestCase testCase, int number)
           
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestsManager.getLastNFailingResults(TestCase testCase, java.util.List<BuildResultsSummary> buildResults, int number)
          Retrieve the last n failing testResults for this given test case, but only those that occurred within the provided build results.
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestsManagerImpl.getLastNFailingResults(TestCase testCase, java.util.List<BuildResultsSummary> buildResults, int number)
           
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestsHibernateDao.getLastNFailingResultsForTestCase(TestCase testCase, int number)
           
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestsDao.getLastNFailingResultsForTestCase(TestCase testCase, int number)
          Retrieve the last n failing testResults for this given test case, latest first.
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestsHibernateDao.getLastNFailingResultsForTestCaseAndBuildResults(TestCase testCase, java.util.List<BuildResultsSummary> buildResults, int number)
           
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestsDao.getLastNFailingResultsForTestCaseAndBuildResults(TestCase testCase, java.util.List<BuildResultsSummary> buildResults, int number)
          Retrieve the last n failing testResults for this given test case, but only those that occurred within the provided build results.
 java.util.List<Pair<TestCase,java.lang.Float>> TestsManager.getLongestToFixTestCases(java.util.List<BuildResultsSummary> buildResults)
          Retrieve a list of the test cases that have taken the longest amount of time to fix.
 java.util.List<Pair<TestCase,java.lang.Float>> TestsManagerImpl.getLongestToFixTestCases(java.util.List<BuildResultsSummary> buildResults)
           
 java.util.List<Pair<TestCase,java.lang.Float>> TestsManager.getLongestToFixTestCases(Plan plan)
          Retrieve a list of the test cases that have taken the longest amount of time to fix.
 java.util.List<Pair<TestCase,java.lang.Float>> TestsManagerImpl.getLongestToFixTestCases(Plan plan)
           
 java.util.List<Pair<java.lang.Long,java.lang.Float>> TestsHibernateDao.getLongestToFixTestCasesForBuildResults(java.util.List<BuildResultsSummary> buildResults)
           
 java.util.List<Pair<java.lang.Long,java.lang.Float>> TestsDao.getLongestToFixTestCasesForBuildResults(java.util.List<BuildResultsSummary> buildResults)
          Retrieve a list of the test cases that have taken the longest amount of time to fix.
 java.util.List<Pair<java.lang.Long,java.lang.Float>> TestsHibernateDao.getLongestToFixTestCasesForPlan(Plan plan)
           
 java.util.List<Pair<java.lang.Long,java.lang.Float>> TestsDao.getLongestToFixTestCasesForPlan(Plan plan)
          Retrieve a list of the test cases that have taken the longest amount of time to fix.
 java.util.List<Pair<TestCase,java.lang.Integer>> TestsManager.getMostFailingTestCases(java.util.List<BuildResultsSummary> buildResults)
          Provide a list of the top 10 most failing test cases for a plan.
 java.util.List<Pair<TestCase,java.lang.Integer>> TestsManagerImpl.getMostFailingTestCases(java.util.List<BuildResultsSummary> buildResults)
           
 java.util.List<Pair<TestCase,java.lang.Integer>> TestsManager.getMostFailingTestCases(Plan plan)
          Provide a list of the top 10 most failing test cases for a plan.
 java.util.List<Pair<TestCase,java.lang.Integer>> TestsManagerImpl.getMostFailingTestCases(Plan plan)
           
 java.util.List<Pair<java.lang.Long,java.lang.Integer>> TestsHibernateDao.getMostFailingTestCasesForBuildResults(java.util.List<BuildResultsSummary> buildResults)
           
 java.util.List<Pair<java.lang.Long,java.lang.Integer>> TestsDao.getMostFailingTestCasesForBuildResults(java.util.List<BuildResultsSummary> buildResults)
          Provide a list of the top 10 most failing test cases for a plan.
 java.util.List<Pair<java.lang.Long,java.lang.Integer>> TestsHibernateDao.getMostFailingTestCasesForPlan(Plan plan)
           
 java.util.List<Pair<java.lang.Long,java.lang.Integer>> TestsDao.getMostFailingTestCasesForPlan(Plan plan)
          Provide a list of the top 10 most failing test cases for a plan.
 

Uses of Pair in com.atlassian.bamboo.util
 

Method parameters in com.atlassian.bamboo.util with type arguments of type Pair
static
<K,V> java.util.Map<K,V>
BambooMaps.newHashMapFrom(java.lang.Iterable<? extends V> source, com.google.common.base.Function<V,Pair<K,V>> function)
           
static
<K,V> void
BambooMaps.putAll(java.util.Map<K,? super V> map, java.lang.Iterable<Pair<K,V>> iterable)
           
 

Uses of Pair in com.atlassian.bamboo.utils
 

Methods in com.atlassian.bamboo.utils that return Pair
static
<A,B> Pair<A,B>
Pair.make(A first, B second)
           
 

Methods in com.atlassian.bamboo.utils with parameters of type Pair
 int Pair.compareTo(Pair obj)
           
 

Uses of Pair in com.atlassian.bamboo.ww2.actions.build.admin.create
 

Methods in com.atlassian.bamboo.ww2.actions.build.admin.create that return types with arguments of type Pair
 java.util.List<Pair<java.lang.String,java.lang.String>> UIConfigSupport.getPollingTypes()
           
 java.util.List<Pair<java.lang.String,java.lang.String>> UIConfigBeanImpl.getPollingTypes()
           
 



Copyright © 2012 Atlassian. All Rights Reserved.