com.sudicode.fb2gh.fogbugz.FBMilestone Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fogbugz-to-github Show documentation
Show all versions of fogbugz-to-github Show documentation
Migrates FogBugz cases to GitHub issues.
The newest version!
package com.sudicode.fb2gh.fogbugz;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
/**
* FogBugz milestone.
*/
@EqualsAndHashCode
@ToString(of = "name")
@XmlRootElement(name = "fixfor")
public class FBMilestone {
private int id;
private String name;
private int projectId;
private String projectName;
FBMilestone() {
}
/**
* @return ID of the milestone
*/
public int getId() {
return id;
}
@XmlElement(name = "ixFixFor")
void setId(int id) {
this.id = id;
}
/**
* @return Name of the milestone
*/
public String getName() {
return name;
}
@XmlElement(name = "sFixFor")
void setName(String name) {
this.name = name;
}
/**
* @return Project ID
*/
public int getProjectId() {
return projectId;
}
@XmlElement(name = "ixProject")
void setProjectId(int projectId) {
this.projectId = projectId;
}
/**
* @return Project name
*/
public String getProjectName() {
return projectName;
}
@XmlElement(name = "sProject")
void setProjectName(String projectName) {
this.projectName = projectName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy