package test.rewolucja.scheduling.plan; import java.util.Map; import schedframe.resources.units.ResourceUnit; import schedframe.scheduling.plan.AllocationInterface; import schedframe.scheduling.utils.ResourceParameterName; public interface AllocationInterfaceNew extends AllocationInterface{ public void setSpecificResources(Map choosenResources); public Map getRequestedResources(); public void setProviderName(String providerName); public String getProviderName(); public boolean isProcessing(); }