mirror of https://github.com/apache/cloudstack.git
11 lines
343 B
Java
11 lines
343 B
Java
package com.cloud.network.element;
|
|
|
|
import com.cloud.api.commands.ConfigureDhcpElementCmd;
|
|
import com.cloud.utils.component.PluggableService;
|
|
|
|
public interface DhcpElementService extends PluggableService{
|
|
boolean configure(ConfigureDhcpElementCmd cmd);
|
|
boolean addElement(Long nspId, String uuid);
|
|
Long getIdByUUID(String uuid);
|
|
}
|