mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01: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();
|
|
}
|