mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
14 lines
308 B
Java
14 lines
308 B
Java
/**
|
|
*
|
|
*/
|
|
package com.cloud.deploy;
|
|
|
|
import java.util.Set;
|
|
|
|
import com.cloud.utils.component.Adapter;
|
|
import com.cloud.vm.VirtualMachineProfile;
|
|
|
|
public interface DeploymentPlanner extends Adapter {
|
|
DeployDestination plan(VirtualMachineProfile vm, DeploymentPlan plan, Set<DeployDestination> avoid);
|
|
}
|