source: xssim/trunk/src/test/rewolucja/scheduling/plan/AllocationInterfaceNew.java @ 104

Revision 104, 642 bytes checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package test.rewolucja.scheduling.plan;
2
3import java.util.Map;
4
5import schedframe.resources.units.ResourceUnit;
6import schedframe.scheduling.plan.AllocationInterface;
7import schedframe.scheduling.utils.ResourceParameterName;
8
9public interface AllocationInterfaceNew extends AllocationInterface<org.qcg.broker.schemas.schedulingplan.Allocation>{
10
11       
12        public void setSpecificResources(Map<ResourceParameterName, ResourceUnit> choosenResources);
13       
14        public Map<ResourceParameterName, ResourceUnit> getRequestedResources();
15       
16        public void setProviderName(String providerName);
17       
18        public String getProviderName();
19       
20        public boolean isProcessing();
21}
Note: See TracBrowser for help on using the repository browser.