All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.messners.gitlab.api.models.Milestone Maven / Gradle / Ivy

Go to download

GitLab API provides a full featured Java API for working with GitLab repositories via the GitLab REST API

There is a newer version: 4.0.4
Show newest version
package com.messners.gitlab.api.models;

import java.util.Date;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Milestone {

	private Date createdAt;
	private String description;
	private Date dueDate;
	private Integer id;
	private Integer iid;
	private Integer projectId;
	private String state;
	private String title;
	private Date updatedAt;

	public Date getCreatedAt () {
		return this.createdAt;
	}

	public void setCreatedAt (Date createdAt) {
		this.createdAt = createdAt;
	}

	public String getDescription () {
		return this.description;
	}

	public void setDescription (String description) {
		this.description = description;
	}

	public Date getDueDate () {
		return this.dueDate;
	}

	public void setDueDate (Date dueDate) {
		this.dueDate = dueDate;
	}

	public Integer getId () {
		return this.id;
	}

	public void setId (Integer id) {
		this.id = id;
	}

	public Integer getIid () {
		return this.iid;
	}

	public void setIid (Integer iid) {
		this.iid = iid;
	}

	public Integer getProjectId () {
		return this.projectId;
	}

	public void setProjectId (Integer projectId) {
		this.projectId = projectId;
	}

	public String getState () {
		return this.state;
	}

	public void setState (String state) {
		this.state = state;
	}

	public String getTitle () {
		return this.title;
	}

	public void setTitle (String title) {
		this.title = title;
	}

	public Date getUpdatedAt () {
		return this.updatedAt;
	}

	public void setUpdatedAt (Date updatedAt) {
		this.updatedAt = updatedAt;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy