001: package com.technoetic.xplanner.soap.domain;
002:
003: import java.util.Calendar;
004:
005: import com.technoetic.xplanner.domain.Task;
006:
007: public class TaskData extends DomainData {
008: private int storyId;
009: private int acceptorId;
010: private Calendar createdDate;
011: private String name;
012: private String description;
013: private boolean completionFlag;
014: private String type;
015: private String dispositionName;
016: private double estimatedOriginalHours;
017: private double adjustedEstimatedHours;
018: private double estimatedHours;
019: private double actualHours;
020: private double remainingHours;
021:
022: public void setStoryId(int storyId) {
023: this .storyId = storyId;
024: }
025:
026: public int getStoryId() {
027: return storyId;
028: }
029:
030: public void setAcceptorId(int acceptorId) {
031: this .acceptorId = acceptorId;
032: }
033:
034: public int getAcceptorId() {
035: return acceptorId;
036: }
037:
038: public void setCreatedDate(Calendar createdDate) {
039: this .createdDate = createdDate;
040: }
041:
042: public Calendar getCreatedDate() {
043: return createdDate;
044: }
045:
046: public void setEstimatedHours(double estimatedHours) {
047: this .estimatedHours = estimatedHours;
048: }
049:
050: public double getEstimatedHours() {
051: return estimatedHours;
052: }
053:
054: public double getRemainingHours() {
055: return remainingHours;
056: }
057:
058: public void setRemainingHours(double remainingHours) {
059: this .remainingHours = remainingHours;
060: }
061:
062: public void setName(String name) {
063: this .name = name;
064: }
065:
066: public String getName() {
067: return name;
068: }
069:
070: public void setDescription(String description) {
071: this .description = description;
072: }
073:
074: public String getDescription() {
075: return description;
076: }
077:
078: public boolean isCompleted() {
079: return completionFlag;
080: }
081:
082: public void setCompleted(boolean completionFlag) {
083: this .completionFlag = completionFlag;
084: }
085:
086: public void setType(String type) {
087: this .type = type;
088: }
089:
090: public String getType() {
091: return type;
092: }
093:
094: public void setDispositionName(String dispositionName) {
095: this .dispositionName = dispositionName;
096: }
097:
098: public String getDispositionName() {
099: return dispositionName;
100: }
101:
102: public double getActualHours() {
103: return actualHours;
104: }
105:
106: public void setActualHours(double actualHours) {
107: this .actualHours = actualHours;
108: }
109:
110: public double getAdjustedEstimatedHours() {
111: return adjustedEstimatedHours;
112: }
113:
114: public void setAdjustedEstimatedHours(double adjustedEstimatedHours) {
115: this .adjustedEstimatedHours = adjustedEstimatedHours;
116: }
117:
118: public double getEstimatedOriginalHours() {
119: return estimatedOriginalHours;
120: }
121:
122: public void setEstimatedOriginalHours(double estimatedOriginalHours) {
123: this .estimatedOriginalHours = estimatedOriginalHours;
124: }
125:
126: public static Class getInternalClass() {
127: return Task.class;
128: }
129: }
|