/* * Copyright 2011 Konrad Malawski <konrad.malawski@project13.pl> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package pl.project13.janbanery.resources; import com.google.gson.annotations.SerializedName; import pl.project13.janbanery.resources.additions.On; import pl.project13.janbanery.resources.additions.ReadOnly; import pl.project13.janbanery.resources.additions.Required; import pl.project13.janbanery.resources.additions.Settable; import java.io.Serializable; /** * An issue describes an externally tracked issue (or bug for example) that corresponds to the linked {@link Task} * * @author Konrad Malawski */ public class Issue extends KanbaneryResource implements Serializable { /** * Id of this entity */ @ReadOnly private Long id; /** * URL pointing to the issue in an external bug-tracking system */ @Required @Settable(On.CreateOrUpdate) private String url; /** * Task related to this issue */ @ReadOnly @SerializedName("task_id") private Integer taskId; /** * True if this issue was already resolved, false otherwise */ @Settable(On.CreateOrUpdate) private Boolean resolved; public Issue() { } public Issue(String url) { this.url = url; } @Override public String getResourceId() { return "issue"; } public Long getId() { return id; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public Integer getTaskId() { return taskId; } public Boolean getResolved() { return resolved; } public void setResolved(Boolean resolved) { this.resolved = resolved; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } if (!super.equals(o)) { return false; } Issue issue = (Issue) o; if (id != null ? !id.equals(issue.id) : issue.id != null) { return false; } if (resolved != null ? !resolved.equals(issue.resolved) : issue.resolved != null) { return false; } if (taskId != null ? !taskId.equals(issue.taskId) : issue.taskId != null) { return false; } if (url != null ? !url.equals(issue.url) : issue.url != null) { return false; } return true; } @Override public int hashCode() { int result = super.hashCode(); result = 31 * result + (id != null ? id.hashCode() : 0); result = 31 * result + (url != null ? url.hashCode() : 0); result = 31 * result + (taskId != null ? taskId.hashCode() : 0); result = 31 * result + (resolved != null ? resolved.hashCode() : 0); return result; } @Override public String toString() { final StringBuilder sb = new StringBuilder(); sb.append("Issue"); sb.append("{id=").append(id); sb.append(", url='").append(url).append('\''); sb.append(", taskId=").append(taskId); sb.append(", resolved=").append(resolved); sb.append('}'); return sb.toString(); } }