com.taskadapter.redmineapi.bean.Watcher 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;
/**
* Issue Watcher for a Redmine issue
*/
public class Watcher {
private Integer id;
private String name;
/**
* @param id database Id
*/
public Watcher setId(Integer id) {
this.id = id;
return this;
}
public Integer getId() {
return id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Watcher watcher = (Watcher) o;
if (id != null ? !id.equals(watcher.id) : watcher.id != null) return false;
return true;
}
@Override
public int hashCode() {
return id != null ? id.hashCode() : 0;
}
@Override
public String toString() {
return "Watcher{" +
"id=" + id +
", name='" + name + '\'' +
'}';
}
}