org.gitlab4j.api.models.RelatedEpic 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 org.gitlab4j.api.utils.JacksonJson;
import java.util.Date;
public class RelatedEpic extends AbstractEpic {
private static final long serialVersionUID = 1L;
private Boolean startDateIsFixed;
private Boolean dueDateIsFixed;
private Date dueDateFromInheritedSource;
private Long relatedEpicLinkId;
private LinkType linkType;
private Date linkCreatedAt;
private Date linkUpdatedAt;
public Boolean getStartDateIsFixed() {
return startDateIsFixed;
}
public void setStartDateIsFixed(Boolean startDateIsFixed) {
this.startDateIsFixed = startDateIsFixed;
}
public Boolean getDueDateIsFixed() {
return dueDateIsFixed;
}
public void setDueDateIsFixed(Boolean dueDateIsFixed) {
this.dueDateIsFixed = dueDateIsFixed;
}
public Date getDueDateFromInheritedSource() {
return dueDateFromInheritedSource;
}
public void setDueDateFromInheritedSource(Date dueDateFromInheritedSource) {
this.dueDateFromInheritedSource = dueDateFromInheritedSource;
}
public Long getRelatedEpicLinkId() {
return relatedEpicLinkId;
}
public void setRelatedEpicLinkId(Long relatedEpicLinkId) {
this.relatedEpicLinkId = relatedEpicLinkId;
}
public LinkType getLinkType() {
return linkType;
}
public void setLinkType(LinkType linkType) {
this.linkType = linkType;
}
public Date getLinkCreatedAt() {
return linkCreatedAt;
}
public void setLinkCreatedAt(Date linkCreatedAt) {
this.linkCreatedAt = linkCreatedAt;
}
public Date getLinkUpdatedAt() {
return linkUpdatedAt;
}
public void setLinkUpdatedAt(Date linkUpdatedAt) {
this.linkUpdatedAt = linkUpdatedAt;
}
public String toString() {
return (JacksonJson.toJsonString(this));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy