Class GitHubPullRequestLabelCause
- java.lang.Object
-
- hudson.model.Cause
-
- com.adobe.jenkins.github_pr_comment_build.GitHubPullRequestLabelCause
-
- All Implemented Interfaces:
Serializable
public final class GitHubPullRequestLabelCause extends Cause implements Serializable
Created by Agyaey on 04/04/2023.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class hudson.model.Cause
Cause.LegacyCodeCause, Cause.RemoteCause, Cause.UpstreamCause, Cause.UserCause, Cause.UserIdCause
-
-
Constructor Summary
Constructors Constructor Description GitHubPullRequestLabelCause(String labelUrl, String labellingAuthor, String label)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getLabel()
Retrieves the body for the GitHub Label for this cause.String
getLabellingAuthor()
Retrieves the author of the GitHub Label for this cause.String
getLabelUrl()
Retrieves the URL for the GitHub Label for this cause.String
getShortDescription()
-
-
-
Method Detail
-
getShortDescription
public String getShortDescription()
- Specified by:
getShortDescription
in classCause
-
getLabelUrl
@Exported(visibility=3) public String getLabelUrl()
Retrieves the URL for the GitHub Label for this cause.- Returns:
- the URL for the GitHub Label
-
getLabellingAuthor
@Exported(visibility=3) public String getLabellingAuthor()
Retrieves the author of the GitHub Label for this cause.- Returns:
- the author of the GitHub Label
-
getLabel
@Exported(visibility=3) public String getLabel()
Retrieves the body for the GitHub Label for this cause.- Returns:
- the body for the GitHub Label
-
-