com.taskadapter.redmineapi.Include Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redmine-java-api Show documentation
Show all versions of redmine-java-api Show documentation
Free open-source Java API for Redmine and Chiliproject bug/task management systems.
This project was originally a part of Task Adapter application (http://www.taskadapter.com)
and then was open-sourced.
The newest version!
package com.taskadapter.redmineapi;
/**
* Use these flags to indicate what needs to be loaded from the server. Example:
*
* Issue issue = issueManager.getIssueById(id, Include.journals, Include.relations, Include.attachments);
*
*/
public enum Include {
// these values MUST BE exactly as they are written here,
// can't use capital letters or rename.
// they are provided in "?include=..." HTTP request
journals, relations, attachments, changesets, watchers, children
}