mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
12 lines
363 B
Java
12 lines
363 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);
|
|
Long getIdByNspId(Long nspId);
|
|
boolean isReady(long nspId);
|
|
}
|