Class GitHubHook
- java.lang.Object
-
- org.springframework.social.github.api.GitHubHook
-
- All Implemented Interfaces:
Serializable
public class GitHubHook extends Object implements Serializable
A GitHub hook. Hooks share commits with other apps, such as Bamboo, Basecamp, e-mail and so forth.- Author:
- Willie Wheeler (willie.wheeler@gmail.com)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GitHubHook()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetActive()DategetCreatedAt()LonggetId()StringgetName()DategetUpdatedAt()StringgetUrl()voidsetActive(boolean active)voidsetCreatedAt(Date createdAt)voidsetId(Long id)voidsetName(String name)voidsetUpdatedAt(Date updatedAt)voidsetUrl(String url)
-
-
-
Method Detail
-
getId
public Long getId()
-
setId
public void setId(Long id)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getUrl
public String getUrl()
-
setUrl
public void setUrl(String url)
-
getActive
public boolean getActive()
-
setActive
public void setActive(boolean active)
-
getCreatedAt
public Date getCreatedAt()
-
setCreatedAt
public void setCreatedAt(Date createdAt)
-
getUpdatedAt
public Date getUpdatedAt()
-
setUpdatedAt
public void setUpdatedAt(Date updatedAt)
-
-