Package org.gitlab4j.api.models
Class SystemHook
- java.lang.Object
-
- org.gitlab4j.api.models.SystemHook
-
public class SystemHook extends Object
-
-
Constructor Summary
Constructors Constructor Description SystemHook()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Date
getCreatedAt()
Boolean
getEnableSslVerification()
Integer
getId()
Boolean
getPushEvents()
Boolean
getRepositoryUpdateEvents()
Boolean
getTagPushEvents()
String
getUrl()
void
setCreatedAt(Date createdAt)
void
setEnableSslVerification(Boolean enableSslVerification)
void
setId(Integer id)
void
setPushEvents(Boolean pushEvents)
void
setRepositoryUpdateEvents(Boolean repositoryUpdateEvents)
void
setTagPushEvents(Boolean tagPushEvents)
void
setUrl(String url)
String
toString()
SystemHook
withCreatedAt(Date createdAt)
SystemHook
withEnableSslVerification(Boolean enableSslVerification)
SystemHook
withId(Integer id)
SystemHook
withPushEvents(Boolean pushEvents)
SystemHook
withRepositoryUpdateEvents(Boolean repositoryUpdateEvents)
SystemHook
withTagPushEvents(Boolean tagPushEvents)
SystemHook
withUrl(String url)
-
-
-
Method Detail
-
getId
public Integer getId()
-
setId
public void setId(Integer id)
-
getUrl
public String getUrl()
-
setUrl
public void setUrl(String url)
-
getCreatedAt
public Date getCreatedAt()
-
setCreatedAt
public void setCreatedAt(Date createdAt)
-
getPushEvents
public Boolean getPushEvents()
-
setPushEvents
public void setPushEvents(Boolean pushEvents)
-
getTagPushEvents
public Boolean getTagPushEvents()
-
setTagPushEvents
public void setTagPushEvents(Boolean tagPushEvents)
-
getEnableSslVerification
public Boolean getEnableSslVerification()
-
setEnableSslVerification
public void setEnableSslVerification(Boolean enableSslVerification)
-
setRepositoryUpdateEvents
public void setRepositoryUpdateEvents(Boolean repositoryUpdateEvents)
-
getRepositoryUpdateEvents
public Boolean getRepositoryUpdateEvents()
-
withId
public SystemHook withId(Integer id)
-
withUrl
public SystemHook withUrl(String url)
-
withCreatedAt
public SystemHook withCreatedAt(Date createdAt)
-
withPushEvents
public SystemHook withPushEvents(Boolean pushEvents)
-
withTagPushEvents
public SystemHook withTagPushEvents(Boolean tagPushEvents)
-
withEnableSslVerification
public SystemHook withEnableSslVerification(Boolean enableSslVerification)
-
withRepositoryUpdateEvents
public SystemHook withRepositoryUpdateEvents(Boolean repositoryUpdateEvents)
-
-