/* * Constellation - An open source and standard compliant SDI * http://www.constellation-sdi.org * * Copyright 2014 Geomatys. * * 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 org.constellation.admin.dto; /** * * @author Johann Sorel (Geomatys) * @author Quentin Boileau (Geomatys) */ public class TaskStatusDTO { private String id; private Integer taskId; private String title; private String status; private float percent; private String message; private String schedule; private Long start; private Long end; private String output; public TaskStatusDTO() { } public String getId() { return id; } public void setId(String id) { this.id = id; } public Integer getTaskId() { return taskId; } public void setTaskId(Integer taskId) { this.taskId = taskId; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public float getPercent() { return percent; } public void setPercent(float percent) { this.percent = percent; } public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } public String getSchedule() { return schedule; } public void setSchedule(String schedule) { this.schedule = schedule; } public Long getStart() { return start; } public void setStart(Long start) { this.start = start; } public Long getEnd() { return end; } public void setEnd(Long end) { this.end = end; } public String getOutput() { return output; } public void setOutput(String output) { this.output = output; } }