com.taskadapter.redmineapi.bean.CustomFieldFactory 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.bean;
public class CustomFieldFactory {
public static CustomField create(Integer id, String name, String value) {
CustomField field = new CustomField().setId(id);
field.setName(name);
field.setValue(value);
return field;
}
}