org.gitlab4j.api.models.SystemHook Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gitlab4j-api Show documentation
Show all versions of gitlab4j-api Show documentation
GitLab4J-API (gitlab4j-api) provides a full featured Java client library for working with GitLab repositories and servers via the GitLab REST API.
package org.gitlab4j.api.models;
import java.util.Date;
import org.gitlab4j.api.utils.JacksonJson;
public class SystemHook {
private Integer id;
private String url;
private Date createdAt;
private Boolean pushEvents;
private Boolean tagPushEvents;
private Boolean enableSslVerification;
private Boolean repositoryUpdateEvents;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public Date getCreatedAt() {
return createdAt;
}
public void setCreatedAt(Date createdAt) {
this.createdAt = createdAt;
}
public Boolean getPushEvents() {
return pushEvents;
}
public void setPushEvents(Boolean pushEvents) {
this.pushEvents = pushEvents;
}
public Boolean getTagPushEvents() {
return tagPushEvents;
}
public void setTagPushEvents(Boolean tagPushEvents) {
this.tagPushEvents = tagPushEvents;
}
public Boolean getEnableSslVerification() {
return enableSslVerification;
}
public void setEnableSslVerification(Boolean enableSslVerification) {
this.enableSslVerification = enableSslVerification;
}
public void setRepositoryUpdateEvents(Boolean repositoryUpdateEvents) {
this.repositoryUpdateEvents = repositoryUpdateEvents;
}
public Boolean getRepositoryUpdateEvents() {
return repositoryUpdateEvents;
}
public SystemHook withId(Integer id) {
this.id = id;
return (this);
}
public SystemHook withUrl(String url) {
this.url = url;
return (this);
}
public SystemHook withCreatedAt(Date createdAt) {
this.createdAt = createdAt;
return (this);
}
public SystemHook withPushEvents(Boolean pushEvents) {
this.pushEvents = pushEvents;
return (this);
}
public SystemHook withTagPushEvents(Boolean tagPushEvents) {
this.tagPushEvents = tagPushEvents;
return (this);
}
public SystemHook withEnableSslVerification(Boolean enableSslVerification) {
this.enableSslVerification = enableSslVerification;
return (this);
}
public SystemHook withRepositoryUpdateEvents(Boolean repositoryUpdateEvents) {
this.repositoryUpdateEvents = repositoryUpdateEvents;
return (this);
}
@Override
public String toString() {
return (JacksonJson.toJsonString(this));
}
}