/* * This file is part of LibrePlan * * Copyright (C) 2013 St. Antoniusziekenhuis * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.libreplan.importers.jira; import java.util.Date; /** * DTO representing a jira-issue WorkLogItem * * @author Miciele Ghiorghis <m.ghiorghis@antoniusziekenhuis.nl> */ public class WorkLogItemDTO { private WorkLogAuthorDTO author; private Integer id; private String self; private Date created; private Date started; private Date updated; private Integer timeSpentSeconds; private String comment; public WorkLogAuthorDTO getAuthor() { return author; } public void setAuthor(WorkLogAuthorDTO author) { this.author = author; } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getSelf() { return self; } public void setSelf(String self) { this.self = self; } public Date getCreated() { return created; } public void setCreated(Date created) { this.created = created; } public Date getStarted() { return started; } public void setStarted(Date started) { this.started = started; } public Date getUpdated() { return updated; } public void setUpdated(Date updated) { this.updated = updated; } public Integer getTimeSpentSeconds() { return timeSpentSeconds; } public void setTimeSpentSeconds(Integer timeSpentSeconds) { this.timeSpentSeconds = timeSpentSeconds; } public String getComment() { return comment; } public void setComment(String comment) { this.comment = comment; } }