Class GitHubComment
- java.lang.Object
-
- org.springframework.social.github.api.GitHubComment
-
- All Implemented Interfaces:
Serializable
public class GitHubComment extends Object implements Serializable
A GitHub comment.- Author:
- Willie Wheeler (willie.wheeler@gmail.com)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GitHubComment()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetBody()DategetCreatedAt()LonggetId()DategetUpdatedAt()StringgetUrl()GitHubUsergetUser()voidsetBody(String body)voidsetCreatedAt(Date createdAt)voidsetId(Long id)voidsetUpdatedA(Date updatedAt)voidsetUrl(String url)voidsetUser(GitHubUser user)
-
-
-
Method Detail
-
getId
public Long getId()
-
setId
public void setId(Long id)
-
getUrl
public String getUrl()
-
setUrl
public void setUrl(String url)
-
getBody
public String getBody()
-
setBody
public void setBody(String body)
-
getUser
public GitHubUser getUser()
-
setUser
public void setUser(GitHubUser user)
-
getCreatedAt
public Date getCreatedAt()
-
setCreatedAt
public void setCreatedAt(Date createdAt)
-
getUpdatedAt
public Date getUpdatedAt()
-
setUpdatedA
public void setUpdatedA(Date updatedAt)
-
-