Revision 104,
642 bytes
checked in by wojtekp, 13 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Line | |
---|
1 | package test.rewolucja.scheduling.plan; |
---|
2 | |
---|
3 | import java.util.Map; |
---|
4 | |
---|
5 | import schedframe.resources.units.ResourceUnit; |
---|
6 | import schedframe.scheduling.plan.AllocationInterface; |
---|
7 | import schedframe.scheduling.utils.ResourceParameterName; |
---|
8 | |
---|
9 | public 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.