com.taskadapter.redmineapi.bean.Property 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 Property {
private final Class type;
private final String name;
Property(Class type, String name) {
this.type = type;
this.name = name;
}
public final String getName() {
return name;
}
public Class getType() {
return type;
}
@Override
public String toString() {
return "Property{" +
"type=" + type +
", name='" + name + '\'' +
'}';
}
}