mirror of
https://github.com/apache/cloudstack
synced 2026-08-13 08:52:39 +00:00
11 lines
246 B
Java
11 lines
246 B
Java
package com.cloud.network;
|
|
|
|
import org.apache.cloudstack.api.Identity;
|
|
import org.apache.cloudstack.api.InternalIdentity;
|
|
|
|
public interface OvsProvider extends InternalIdentity, Identity {
|
|
public boolean isEnabled();
|
|
|
|
public long getNspId();
|
|
}
|