All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.taskurotta.service.dependency.model.TaskDependency Maven / Gradle / Ivy

package ru.taskurotta.service.dependency.model;

import java.util.List;
import java.util.UUID;

/**
 * User: romario
 * Date: 4/1/13
 * Time: 4:46 PM
 */
public class TaskDependency {

    private UUID taskId;

    private List thatWaitThis;
    private List thisWaitThat;
    private boolean parentWaitIt = false;
    private UUID parentId;

    public TaskDependency() {
    }

    public UUID getTaskId() {
        return taskId;
    }

    public void setTaskId(UUID taskId) {
        this.taskId = taskId;
    }

    public List getThatWaitThis() {
        return thatWaitThis;
    }

    public void setThatWaitThis(List thatWaitThis) {
        this.thatWaitThis = thatWaitThis;
    }

    public boolean isParentWaitIt() {
        return parentWaitIt;
    }

    public void setParentWaitIt(boolean parentWaitIt) {
        this.parentWaitIt = parentWaitIt;
    }

    public UUID getParentId() {
        return parentId;
    }

    public void setParentId(UUID parentId) {
        this.parentId = parentId;
    }

    public List getThisWaitThat() {
        return thisWaitThat;
    }

    public void setThisWaitThat(List thisWaitThat) {
        this.thisWaitThat = thisWaitThat;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy