com.atlassian.bamboo.resultsummary
Class BuildResultsSummaryImpl

java.lang.Object
  extended by com.atlassian.core.bean.EntityObject
      extended by com.atlassian.bamboo.core.BambooEntityObject
          extended by com.atlassian.bamboo.resultsummary.AbstractBuildResultsSummary
              extended by com.atlassian.bamboo.resultsummary.BuildResultsSummaryImpl
All Implemented Interfaces:
BambooObject, BuildResultsSummary, ExtendedBuildResultsSummary, ResultStatisticsProvider, java.lang.Cloneable, java.lang.Comparable

public class BuildResultsSummaryImpl
extends AbstractBuildResultsSummary
implements ExtendedBuildResultsSummary


Field Summary
 
Fields inherited from class com.atlassian.bamboo.core.BambooEntityObject
id
 
Constructor Summary
BuildResultsSummaryImpl()
           
 
Method Summary
 int compareTo(java.lang.Object obj)
           
 boolean equals(java.lang.Object object)
           
 java.lang.Long getBuildAgentId()
          The agent Id
 java.util.Date getBuildCompletedDate()
          When the build finished
 java.util.Date getBuildDate()
           
 java.lang.String getBuildKey()
          Full key of the plan.
 int getBuildNumber()
           
 BuildState getBuildState()
           
 java.lang.String getChangedByAuthors()
           
 java.lang.String getChangesListSummary()
           
 java.util.List getComments()
          Gets the associated user comments for the build
 java.util.Set<Commit> getCommits()
           
 java.util.Map getCustomBuildData()
          Custom data map to store random metadata about the build
 DeltaState getDeltaState()
          Gets the DeltaState of the summary.
 long getDuration()
          Duration of the build in millisecods
 double getDurationInSeconds()
           
 long getFailedTestCount()
          Number of failing tests
 java.util.Set getJiraIssueKeys()
          Returns all the JIRA issue keys metioned in the commit comments
 java.util.List getLabellings()
          Tags / labels assocaited with the build
 java.util.List<java.lang.String> getLabelNames()
          A shortcust method to get all of the label names from the labbellings
 long getSuccessfulTestCount()
          Number of successful tests
 java.lang.Long getTimeToFix()
          A stored version of how long (milli seconds) it took for this build to fix a failure.
 TriggerReason getTriggerReason()
          Why the build was was triggerred (duh)
 java.lang.String getTriggerReasonKey()
           
 java.util.Set getUniqueAuthors()
          A shortcut method to get the unique set of authors contributing to this build.
 int hashCode()
           
static void prefetchFromHibernate(ExtendedBuildResultsSummary buildResultsSummary)
          An inelegant method to force lazily loaded items on the ExtendedBuildResultsSummary to be fully loaded and relatively safe to use outside of the session.
 void setBuildAgentId(java.lang.Long buildAgentId)
           
 void setBuildCompletedDate(java.util.Date buildCompletedDate)
           
 void setBuildDate(java.util.Date buildDate)
           
 void setBuildKey(java.lang.String buildKey)
           
 void setBuildNumber(int buildNumber)
           
 void setBuildState(BuildState buildState)
           
 void setComments(java.util.List comments)
           
 void setCommits(java.util.Set<Commit> commits)
           
 void setCustomBuildData(java.util.Map customBuildData)
           
 void setDeltaState(DeltaState deltaState)
           
 void setDuration(long duration)
           
 void setFailedTestCount(long failedTestCount)
           
 void setJiraIssueKeys(java.util.Set jiraIssueKeys)
           
 void setLabellings(java.util.List labellings)
           
 void setSourceChangeList(java.util.Collection commitList)
           
 void setSuccessfulTestCount(long successfulTestCount)
           
 void setTimeToFix(java.lang.Long timeToFix)
           
 void setTriggerReason(TriggerReason triggerReason)
           
 void setTriggerReasonKey(java.lang.String triggerReasonKey)
           
 
Methods inherited from class com.atlassian.bamboo.resultsummary.AbstractBuildResultsSummary
createChangedByAuthors, getBuildResultKey, getBuildTime, getDurationDescription, getReasonSummary, getRelativeBuildDate, getRelativeBuildDate, getTestSummary, getTriggerReasonManager, getVcsRevisionKey, isBuiltToday, isFailed, isSuccessful, setTriggerReasonManager, setVcsRevisionKey
 
Methods inherited from class com.atlassian.bamboo.core.BambooEntityObject
getId, setId
 
Methods inherited from class com.atlassian.core.bean.EntityObject
clone, getCreationDate, getCurrentDate, getLastModificationDate, setClock, setCreationDate, setLastModificationDate
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.atlassian.bamboo.resultsummary.BuildResultsSummary
getBuildResultKey, getBuildTime, getDurationDescription, getId, getReasonSummary, getRelativeBuildDate, getRelativeBuildDate, getTestSummary, getVcsRevisionKey, isFailed, isSuccessful, setVcsRevisionKey
 
Methods inherited from interface com.atlassian.bamboo.core.BambooObject
getId, setId
 

Constructor Detail

BuildResultsSummaryImpl

public BuildResultsSummaryImpl()
Method Detail

getBuildKey

@NotNull
public java.lang.String getBuildKey()
Description copied from interface: BuildResultsSummary
Full key of the plan. e.g BAM-MAIN

Specified by:
getBuildKey in interface BuildResultsSummary
Returns:

setBuildKey

public void setBuildKey(java.lang.String buildKey)

getBuildState

public BuildState getBuildState()
Specified by:
getBuildState in interface ResultStatisticsProvider

setBuildState

public void setBuildState(BuildState buildState)

getFailedTestCount

public long getFailedTestCount()
Description copied from interface: BuildResultsSummary
Number of failing tests

Specified by:
getFailedTestCount in interface BuildResultsSummary
Returns:

setFailedTestCount

public void setFailedTestCount(long failedTestCount)

getSuccessfulTestCount

public long getSuccessfulTestCount()
Description copied from interface: BuildResultsSummary
Number of successful tests

Specified by:
getSuccessfulTestCount in interface BuildResultsSummary
Returns:

setSuccessfulTestCount

public void setSuccessfulTestCount(long successfulTestCount)

getBuildNumber

public int getBuildNumber()
Specified by:
getBuildNumber in interface ResultStatisticsProvider

setBuildNumber

public void setBuildNumber(int buildNumber)

getBuildDate

public java.util.Date getBuildDate()
Specified by:
getBuildDate in interface ResultStatisticsProvider

setBuildDate

public void setBuildDate(java.util.Date buildDate)

getBuildCompletedDate

public java.util.Date getBuildCompletedDate()
Description copied from interface: BuildResultsSummary
When the build finished

Specified by:
getBuildCompletedDate in interface BuildResultsSummary
Returns:

setBuildCompletedDate

public void setBuildCompletedDate(java.util.Date buildCompletedDate)

getDuration

public long getDuration()
Description copied from interface: BuildResultsSummary
Duration of the build in millisecods

Specified by:
getDuration in interface BuildResultsSummary
Returns:

setDuration

public void setDuration(long duration)

getDeltaState

public DeltaState getDeltaState()
Description copied from interface: BuildResultsSummary
Gets the DeltaState of the summary. It can be a build that fixes, breaks, failing, successfull. Provides a status relative to the previous summary.

Specified by:
getDeltaState in interface BuildResultsSummary
Returns:

setDeltaState

public void setDeltaState(DeltaState deltaState)

getCommits

public java.util.Set<Commit> getCommits()
Specified by:
getCommits in interface ExtendedBuildResultsSummary

setCommits

public void setCommits(java.util.Set<Commit> commits)

getJiraIssueKeys

public java.util.Set getJiraIssueKeys()
Description copied from interface: BuildResultsSummary
Returns all the JIRA issue keys metioned in the commit comments

Specified by:
getJiraIssueKeys in interface BuildResultsSummary
Returns:

setJiraIssueKeys

public void setJiraIssueKeys(java.util.Set jiraIssueKeys)

getCustomBuildData

public java.util.Map getCustomBuildData()
Description copied from interface: BuildResultsSummary
Custom data map to store random metadata about the build

Specified by:
getCustomBuildData in interface BuildResultsSummary
Returns:

setCustomBuildData

public void setCustomBuildData(java.util.Map customBuildData)

getTimeToFix

public java.lang.Long getTimeToFix()
Description copied from interface: BuildResultsSummary
A stored version of how long (milli seconds) it took for this build to fix a failure.

Specified by:
getTimeToFix in interface BuildResultsSummary
Returns:
Null if not a fixing build

setTimeToFix

public void setTimeToFix(java.lang.Long timeToFix)

getLabellings

public java.util.List getLabellings()
Description copied from interface: BuildResultsSummary
Tags / labels assocaited with the build

Specified by:
getLabellings in interface BuildResultsSummary
Returns:

setLabellings

public void setLabellings(java.util.List labellings)

getLabelNames

@NotNull
public java.util.List<java.lang.String> getLabelNames()
Description copied from interface: BuildResultsSummary
A shortcust method to get all of the label names from the labbellings

Specified by:
getLabelNames in interface BuildResultsSummary
Returns:

getComments

public java.util.List getComments()
Description copied from interface: BuildResultsSummary
Gets the associated user comments for the build

Specified by:
getComments in interface BuildResultsSummary
Returns:

setComments

public void setComments(java.util.List comments)

getUniqueAuthors

public java.util.Set getUniqueAuthors()
Description copied from interface: BuildResultsSummary
A shortcut method to get the unique set of authors contributing to this build.

Specified by:
getUniqueAuthors in interface BuildResultsSummary
Returns:
Set of Authors

getTriggerReasonKey

public java.lang.String getTriggerReasonKey()

setTriggerReasonKey

public void setTriggerReasonKey(java.lang.String triggerReasonKey)

getTriggerReason

@NotNull
public TriggerReason getTriggerReason()
Description copied from interface: BuildResultsSummary
Why the build was was triggerred (duh)

Specified by:
getTriggerReason in interface BuildResultsSummary
Returns:

setTriggerReason

public void setTriggerReason(TriggerReason triggerReason)

getBuildAgentId

public java.lang.Long getBuildAgentId()
Description copied from interface: BuildResultsSummary
The agent Id

Specified by:
getBuildAgentId in interface BuildResultsSummary
Returns:

setBuildAgentId

public void setBuildAgentId(java.lang.Long buildAgentId)

getChangedByAuthors

public java.lang.String getChangedByAuthors()
Specified by:
getChangedByAuthors in interface BuildResultsSummary

getChangesListSummary

public java.lang.String getChangesListSummary()
Specified by:
getChangesListSummary in interface ExtendedBuildResultsSummary

getDurationInSeconds

public double getDurationInSeconds()
Specified by:
getDurationInSeconds in interface ResultStatisticsProvider

compareTo

public int compareTo(java.lang.Object obj)
Specified by:
compareTo in interface java.lang.Comparable

setSourceChangeList

public void setSourceChangeList(java.util.Collection commitList)

equals

public boolean equals(java.lang.Object object)
Overrides:
equals in class com.atlassian.core.bean.EntityObject

hashCode

public int hashCode()
Overrides:
hashCode in class com.atlassian.core.bean.EntityObject

prefetchFromHibernate

public static void prefetchFromHibernate(ExtendedBuildResultsSummary buildResultsSummary)
An inelegant method to force lazily loaded items on the ExtendedBuildResultsSummary to be fully loaded and relatively safe to use outside of the session. Should not be used when large numbers of builds are retrieved and should be avoided if possible.

Parameters:
buildResultsSummary -


Copyright © 2008 Atlassian Pty Ltd. All Rights Reserved.