Class ReviewCommentGroovyObject
- java.lang.Object
-
- groovy.lang.GroovyObjectSupport
-
- org.jenkinsci.plugins.pipeline.github.ReviewCommentGroovyObject
-
- All Implemented Interfaces:
groovy.lang.GroovyObject
,Serializable
public class ReviewCommentGroovyObject extends groovy.lang.GroovyObjectSupport implements Serializable
Groovy wrapper overExtendedCommitComment
Additionally provides one the ability to update the comment body and delete the comment.- Author:
- Aaron Whiteside
- See Also:
ExtendedCommitComment
, Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
delete()
String
getBody()
String
getCommitId()
Date
getCreatedAt()
String
getDiffHunk()
long
getId()
long
getInReplyToId()
Integer
getLine()
Deprecated.String
getOriginalCommitId()
Integer
getOriginalPosition()
String
getPath()
Integer
getPosition()
long
getPullRequestReviewId()
String
getPullRequestUrl()
Date
getUpdatedAt()
String
getUrl()
String
getUser()
void
replyTo(String body)
void
setBody(String body)
-
-
-
Method Detail
-
getLine
@Deprecated public Integer getLine()
Deprecated.
-
getPosition
public Integer getPosition()
-
getOriginalPosition
public Integer getOriginalPosition()
-
getCommitId
public String getCommitId()
-
getOriginalCommitId
public String getOriginalCommitId()
-
getPath
public String getPath()
-
getDiffHunk
public String getDiffHunk()
-
getCreatedAt
public Date getCreatedAt()
-
getUpdatedAt
public Date getUpdatedAt()
-
getBody
public String getBody()
-
getId
public long getId()
-
getUrl
public String getUrl()
-
getUser
public String getUser()
-
getInReplyToId
public long getInReplyToId()
-
getPullRequestUrl
public String getPullRequestUrl()
-
getPullRequestReviewId
public long getPullRequestReviewId()
-
setBody
public void setBody(String body)
-
delete
public void delete()
-
replyTo
public void replyTo(String body)
-
-