Class FailureCauseDisplayData.Links
- java.lang.Object
-
- com.sonyericsson.jenkins.plugins.bfa.model.FailureCauseDisplayData.Links
-
- Enclosing class:
- FailureCauseDisplayData
public static final class FailureCauseDisplayData.Links extends Object
A class containing links to be displayed for the project and the build.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getBuildDisplayName()
Getting the text to be displayed for the build link.String
getBuildUrl()
Getting the build url.String
getProjectDisplayName()
Getting the text to be displayed for the project link.String
getProjectUrl()
Getting the project url.void
setBuildDisplayName(String buildDisplayName)
Set the text to be displayed for the build link.void
setBuildUrl(String buildUrl)
Set the build url.void
setProjectDisplayName(String projectDisplayName)
Set the text to be displayed for the project link.void
setProjectUrl(String projectUrl)
Set the project url.
-
-
-
Method Detail
-
getProjectUrl
public String getProjectUrl()
Getting the project url.- Returns:
- link to the project.
-
setProjectUrl
public void setProjectUrl(String projectUrl)
Set the project url.- Parameters:
projectUrl
- the new url
-
getBuildUrl
public String getBuildUrl()
Getting the build url.- Returns:
- link to build
-
setBuildUrl
public void setBuildUrl(String buildUrl)
Set the build url.- Parameters:
buildUrl
- the new url
-
getProjectDisplayName
public String getProjectDisplayName()
Getting the text to be displayed for the project link.- Returns:
- text to show for the project link
-
setProjectDisplayName
public void setProjectDisplayName(String projectDisplayName)
Set the text to be displayed for the project link.- Parameters:
projectDisplayName
- the text to show
-
getBuildDisplayName
public String getBuildDisplayName()
Getting the text to be displayed for the build link.- Returns:
- text to show for the build link
-
setBuildDisplayName
public void setBuildDisplayName(String buildDisplayName)
Set the text to be displayed for the build link.- Parameters:
buildDisplayName
- the text to show
-
-