Changeset 478 for DCWoRMS/trunk/src/schedframe/scheduling/tasks
- Timestamp:
- 10/01/12 10:05:16 (13 years ago)
- Location:
- DCWoRMS/trunk/src/schedframe/scheduling/tasks
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/trunk/src/schedframe/scheduling/tasks/AbstractProcesses.java
r477 r478 3 3 import schedframe.scheduling.tasks.requirements.ResourceParameterName; 4 4 5 public abstract class AbstractProcesses <T> implements WorkloadUnit<T>{5 public abstract class AbstractProcesses implements WorkloadUnit{ 6 6 7 7 -
DCWoRMS/trunk/src/schedframe/scheduling/tasks/JobInterface.java
r477 r478 2 2 3 3 import java.util.List; 4 5 import schedframe.DescriptionContainer; 4 6 5 7 … … 9 11 * 10 12 */ 11 public interface JobInterface<T> extends WorkloadUnit <T> {13 public interface JobInterface<T> extends WorkloadUnit, DescriptionContainer<T> { 12 14 13 15 /** -
DCWoRMS/trunk/src/schedframe/scheduling/tasks/Processes.java
r477 r478 196 196 } 197 197 198 public org.qcg.broker.schemas.resreqs.Processes getDescription(){199 return this.pr;200 }201 198 202 199 @Override … … 212 209 } 213 210 214 @Override 215 public String getDocument() throws Exception { 216 // TODO Auto-generated method stub 217 return null; 218 } 211 219 212 220 213 @Override -
DCWoRMS/trunk/src/schedframe/scheduling/tasks/TaskInterface.java
r477 r478 6 6 import org.joda.time.ReadableDuration; 7 7 8 import schedframe.DescriptionContainer; 8 9 import schedframe.scheduling.tasks.requirements.ResourceParameterName; 9 10 … … 14 15 * 15 16 */ 16 public interface TaskInterface<T> extends WorkloadUnit <T> {17 public interface TaskInterface<T> extends WorkloadUnit, DescriptionContainer<T> { 17 18 18 19 /** -
DCWoRMS/trunk/src/schedframe/scheduling/tasks/WorkloadUnit.java
r477 r478 5 5 import schedframe.scheduling.manager.tasks.JobRegistryImpl; 6 6 7 public interface WorkloadUnit <T> extends DescriptionContainer<T>{7 public interface WorkloadUnit { 8 8 9 9 public String getId();
Note: See TracChangeset
for help on using the changeset viewer.