com.nulabinc.backlog4j.Milestone Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of backlog4j Show documentation
Show all versions of backlog4j Show documentation
Backlog4j is a Backlog binding library for Java.
package com.nulabinc.backlog4j;
import java.util.Date;
/**
* The interface for Backlog milestone data.
*
* @author nulab-inc
*/
public interface Milestone {
long getId();
String getIdAsString();
long getProjectId();
String getProjectIdAsString();
String getName();
String getDescription();
Date getStartDate();
Date getReleaseDueDate();
Boolean getArchived();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy