Ignore:
Timestamp:
10/16/12 09:38:14 (13 years ago)
Author:
wojtekp
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • DCWoRMS/trunk/src/schedframe/scheduling/policy/AbstractManagementSystem.java

    r493 r517  
    2626import schedframe.scheduling.plugin.estimation.ExecutionTimeEstimationPlugin; 
    2727import schedframe.scheduling.plugin.grid.ModuleList; 
    28 import schedframe.scheduling.plugin.local.ResourceAllocationInterface; 
     28import schedframe.scheduling.plugin.local.ResourceAllocation; 
    2929import schedframe.scheduling.queue.TaskQueue; 
    3030import schedframe.scheduling.queue.TaskQueueList; 
     
    104104        } 
    105105 
    106         public ResourceAllocationInterface getAllocationManager() { 
    107                 if (resourceManager instanceof ResourceAllocationInterface) 
    108                         return (ResourceAllocationInterface) resourceManager; 
     106        public ResourceAllocation getAllocationManager() { 
     107                if (resourceManager instanceof ResourceAllocation) 
     108                        return (ResourceAllocation) resourceManager; 
    109109                else 
    110110                        return null; 
Note: See TracChangeset for help on using the changeset viewer.